SQLite3Result::columnType

(PHP 5 >= 5.3.0, PHP 7) Returns the type of the nth column public int SQLite3Result::columnType ( int $column_number ) Returns the type of the column identified by column_number. Parameters: column_number The numeric zero-based index of the column. Returns: Returns the data type index of the column identified by column_number (one of SQLITE3_I

SQLite3Result::columnName

(PHP 5 >= 5.3.0, PHP 7) Returns the name of the nth column public string SQLite3Result::columnName ( int $column_number ) Returns the name of the column specified by the column_number. Parameters: column_number The numeric zero-based index of the column. Returns: Returns the string name of the column identified by column_number.

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.

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.

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::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::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::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

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