SQLiteConnector::getDefaultOptions()

array getDefaultOptions() Get the default PDO connection options. Return Value array

SQLiteConnector::createConnection()

PDO createConnection(string $dsn, array $config, array $options) Create a new PDO connection. Parameters string $dsn array $config array $options Return Value PDO

SQLiteConnector::connect()

PDO connect(array $config) Establish a database connection. Parameters array $config Return Value PDO Exceptions InvalidArgumentException

SQLiteConnector

SQLiteConnector class SQLiteConnector extends Connector implements ConnectorInterface (View source) Traits DetectsLostConnections

SQLiteConnection::__construct()

void __construct(PDO $pdo, string $database = '', string $tablePrefix = '', array $config = array()) Create a new database connection instance. Parameters PDO $pdo string $database string $tablePrefix array $config Return Value void

SQLiteConnection::withTablePrefix()

Grammar withTablePrefix(Grammar $grammar) Set the table prefix and return the grammar. Parameters Grammar $grammar Return Value Grammar

SQLiteConnection::useDefaultSchemaGrammar()

void useDefaultSchemaGrammar() Set the schema grammar to the default implementation. Return Value void

SQLiteConnection::useDefaultQueryGrammar()

void useDefaultQueryGrammar() Set the query grammar to the default implementation. Return Value void

SQLiteConnection::useDefaultPostProcessor()

void useDefaultPostProcessor() Set the query post processor to the default implementation. Return Value void

SQLiteConnection::update()

int update(string $query, array $bindings = array()) Run an update statement against the database. Parameters string $query array $bindings Return Value int