PHP Class Pop\Db\Adapter\Sqlite

Author: Nick Sagona, III ([email protected])
Inheritance: extends AbstractAdapter
Afficher le fichier Open project: nicksagona/PopPHP

Protected Properties

Свойство Type Description
$lastResult resource Last result
$lastSql string Last SQL query
$statement SQLite3Stmt Prepared statement

Méthodes publiques

Méthode Description
__construct ( array $options ) : Sqlite Constructor
bindParams ( array $params ) : Sqlite Bind parameters to for a prepared SQL query.
disconnect ( ) : void Close the DB connection.
escape ( string $value ) : string Return the escaped string value.
execute ( ) : void Execute the prepared SQL query.
fetch ( ) : array Return the results array from the results resource.
fetchResult ( ) : array Fetch and return the values.
lastId ( ) : integer Return the auto-increment ID of the last query.
numFields ( ) : integer Return the number of fields in the result.
numRows ( ) : integer Return the number of rows in the result.
prepare ( string $sql ) : Sqlite Prepare a SQL query.
query ( string $sql ) : void Execute the SQL query and create a result resource, or display the SQL error.
showError ( ) : void Throw an exception upon a database error.
version ( ) : string Return the database version.

Méthodes protégées

Méthode Description
loadTables ( ) : array Get an array of the tables of the database.

Method Details

__construct() public méthode

Instantiate the SQLite database connection object.
public __construct ( array $options ) : Sqlite
$options array
Résultat Sqlite

bindParams() public méthode

Bind parameters to for a prepared SQL query.
public bindParams ( array $params ) : Sqlite
$params array
Résultat Sqlite

disconnect() public méthode

Close the DB connection.
public disconnect ( ) : void
Résultat void

escape() public méthode

Return the escaped string value.
public escape ( string $value ) : string
$value string
Résultat string

execute() public méthode

Execute the prepared SQL query.
public execute ( ) : void
Résultat void

fetch() public méthode

Return the results array from the results resource.
public fetch ( ) : array
Résultat array

fetchResult() public méthode

Fetch and return the values.
public fetchResult ( ) : array
Résultat array

lastId() public méthode

Return the auto-increment ID of the last query.
public lastId ( ) : integer
Résultat integer

loadTables() protected méthode

Get an array of the tables of the database.
protected loadTables ( ) : array
Résultat array

numFields() public méthode

Return the number of fields in the result.
public numFields ( ) : integer
Résultat integer

numRows() public méthode

Return the number of rows in the result.
public numRows ( ) : integer
Résultat integer

prepare() public méthode

Prepare a SQL query.
public prepare ( string $sql ) : Sqlite
$sql string
Résultat Sqlite

query() public méthode

Execute the SQL query and create a result resource, or display the SQL error.
public query ( string $sql ) : void
$sql string
Résultat void

showError() public méthode

Throw an exception upon a database error.
public showError ( ) : void
Résultat void

version() public méthode

Return the database version.
public version ( ) : string
Résultat string

Property Details

$lastResult protected_oe property

Last result
protected resource $lastResult
Résultat resource

$lastSql protected_oe property

Last SQL query
protected string $lastSql
Résultat string

$statement protected_oe property

Prepared statement
protected SQLite3Stmt $statement
Résultat SQLite3Stmt