SQLite3Result::numColumns

(PHP 5 >= 5.3.0, PHP 7) Returns the number of columns in the result set public int SQLite3Result::numColumns ( void ) Returns the number of columns in the result set. Returns: Returns the number of columns in the result set.

sqlsrv_cancel

(No version information available, might only be in Git) Cancels a statement bool sqlsrv_cancel ( resource $stmt ) Cancels a statement. Any results associated with the statement that have not been consumed are deleted. After sqlsrv_cancel() has been called, the specified statement can be re-executed if it was created with sqlsrv_prepare(). Calling sqlsrv_cancel() is not necessary if all the results associated with the statem

SQLite3Stmt::reset

(PHP 5 >= 5.3.0, PHP 7) Resets the prepared statement public bool SQLite3Stmt::reset ( void ) Resets the prepared statement to its state prior to execution. All bindings remain intact after reset. Returns: Returns TRUE if the statement is successfully reset, FALSE on failure.

SQLite3Stmt::paramCount

(PHP 5 >= 5.3.0, PHP 7) Returns the number of parameters within the prepared statement public int SQLite3Stmt::paramCount ( void ) Returns the number of parameters within the prepared statement. Returns: Returns the number of parameters within the prepared statement.

SQLite3::version

(PHP 5 >= 5.3.0, PHP 7) Returns the SQLite3 library version as a string constant and as a number public static array SQLite3::version ( void ) Returns the SQLite3 library version as a string constant and as a number. Returns: Returns an associative array with the keys "versionString" and "versionNumber". Examples: SQLite3::version

SQLite3Stmt::clear

(PHP 5 >= 5.3.0, PHP 7) Clears all current bound parameters public bool SQLite3Stmt::clear ( void ) Clears all current bound parameters. Returns: Returns TRUE on successful clearing of bound parameters, FALSE on failure.

SQLite3Stmt::bindParam

(PHP 5 >= 5.3.0, PHP 7) Binds a parameter to a statement variable public bool SQLite3Stmt::bindParam ( string $sql_param, mixed &$param [, int $type ] ) Binds a parameter to a statement variable. Parameters: sql_param An string identifying the statement variable to which the parameter should be bound. param The parameter to bind

SQLite3Stmt::bindValue

(PHP 5 >= 5.3.0, PHP 7) Binds the value of a parameter to a statement variable public bool SQLite3Stmt::bindValue ( string $sql_param, mixed $value [, int $type ] ) Binds the value of a parameter to a statement variable. Parameters: sql_param An string identifying the statement variable to which the value should be bound. value The v

SQLite3Stmt::close

(PHP 5 >= 5.3.0, PHP 7) Closes the prepared statement public bool SQLite3Stmt::close ( void ) Closes the prepared statement. Returns: Returns TRUE

SQLite3Stmt::execute

(PHP 5 >= 5.3.0, PHP 7) Executes a prepared statement and returns a result set object public SQLite3Result SQLite3Stmt::execute ( void ) Executes a prepared statement and returns a result set object. Returns: Returns an SQLite3Result object on successful execution of the prepared statement, FALSE on failure.