SQLiteEngine
class SQLiteEngine implements Engine
SQLite database platform.
Properties
$formatDateTime |
Methods
Checks if the engine supports a specific feature.
Escapes an identifier for use in an SQL statement.
Applies LIMIT and OFFSET clauses to an SQL query.
Returns a list of all tables in the database.
Returns detailed information about columns in a table.
Returns information about indexes in a table.
Returns information about foreign keys in a table.
Converts a value from the database to a PHP value.
Details
at line 27
__construct(Connection $connection)
No description
at line 33
bool
isSupported(string $feature)
Checks if the engine supports a specific feature.
at line 39
string|null
classifyException(DriverException $e)
Maps a driver exception to an appropriate exception class.
at line 73
string
delimit(string $name)
Escapes an identifier for use in an SQL statement.
at line 79
string
formatDateTime(DateTimeInterface $value)
Formats a date-time value for use in an SQL statement.
at line 85
string
formatDateInterval(DateInterval $value)
Formats a date-time interval for use in an SQL statement.
at line 91
string
applyLimit(string $sql, int|null $limit, int|null $offset)
Applies LIMIT and OFFSET clauses to an SQL query.
at line 108
array
getTables()
Returns a list of all tables in the database.
at line 133
array
getColumns(string $table)
Returns detailed information about columns in a table.
at line 169
array
getIndexes(string $table)
Returns information about indexes in a table.
at line 216
array
getForeignKeys(string $table)
Returns information about foreign keys in a table.
at line 235
mixed
convertToPhp(mixed $value, array $meta, TypeConverter $converter)
Converts a value from the database to a PHP value.