class SqliteDriver extends PdoDriver

Supplemental SQLite3 database driver.

Methods

void
connect(string $dsn, string|null $user = null, string|null $password = null, array|null $options = null)

Initializes connection.

string|null
detectExceptionClass(PDOException $e)

No description

string
delimite(string $name)

Delimits identifier for use in SQL statement.

string
formatDateTime(DateTimeInterface $value)

Formats date-time for use in a SQL statement.

string
formatDateInterval(DateInterval $value)

Formats date-time interval for use in a SQL statement.

string
formatLike(string $value, int $pos)

Encodes string for use in a LIKE statement.

void
applyLimit(string $sql, int|null $limit, int|null $offset)

Injects LIMIT/OFFSET to the SQL query.

array
getTables()

No description

array
getColumns(string $table)

Returns metadata for all columns in a table.

array
getIndexes(string $table)

Returns metadata for all indexes in a table.

array
getForeignKeys(string $table)

Returns metadata for all foreign keys in a table.

array
getColumnTypes(PDOStatement $statement)

No description

bool
isSupported(string $item)

Cheks if driver supports specific property

Details

at line 24
void connect(string $dsn, string|null $user = null, string|null $password = null, array|null $options = null)

Initializes connection.

Parameters

string $dsn
string|null $user
string|null $password
array|null $options

Return Value

void

Exceptions

ConnectionException

at line 37
string|null detectExceptionClass(PDOException $e)

No description

Parameters

PDOException $e

Return Value

string|null

at line 72
string delimite(string $name)

Delimits identifier for use in SQL statement.

Parameters

string $name

Return Value

string

at line 78
string formatDateTime(DateTimeInterface $value)

Formats date-time for use in a SQL statement.

Parameters

DateTimeInterface $value

Return Value

string

at line 84
string formatDateInterval(DateInterval $value)

Formats date-time interval for use in a SQL statement.

Parameters

DateInterval $value

Return Value

string

at line 90
string formatLike(string $value, int $pos)

Encodes string for use in a LIKE statement.

Parameters

string $value
int $pos

Return Value

string

at line 97
void applyLimit(string $sql, int|null $limit, int|null $offset)

Injects LIMIT/OFFSET to the SQL query.

Parameters

string $sql
int|null $limit
int|null $offset

Return Value

void

at line 112
array getTables()

No description

Return Value

array

at line 130
array getColumns(string $table)

Returns metadata for all columns in a table.

Parameters

string $table

Return Value

array

at line 164
array getIndexes(string $table)

Returns metadata for all indexes in a table.

Parameters

string $table

Return Value

array

at line 209
array getForeignKeys(string $table)

Returns metadata for all foreign keys in a table.

Parameters

string $table

Return Value

array

at line 227
array getColumnTypes(PDOStatement $statement)

No description

Parameters

PDOStatement $statement

Return Value

array

at line 246
bool isSupported(string $item)

Cheks if driver supports specific property

Parameters

string $item

self::SUPPORT_* property

Return Value

bool