MySqlDriver
class MySqlDriver implements Driver
Supplemental MySQL database driver.
Constants
ERROR_ACCESS_DENIED |
|
ERROR_DUPLICATE_ENTRY |
|
ERROR_DATA_TRUNCATED |
|
Methods
Driver options:
- charset => character encoding to set (default is utf8 or utf8mb4 since MySQL 5.5.3)
- sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html
Delimites identifier for use in a SQL statement.
Encodes string for use in a LIKE statement.
Injects LIMIT/OFFSET to the SQL query.
Returns list of tables as tuples [(string) name, (bool) view, [(string) fullName]]
Returns metadata for all columns in a table.
Returns metadata for all indexes in a table.
Returns metadata for all foreign keys in a table.
Returns associative array of detected types (IStructure::FIELD_*) in result set.
Cheks if driver supports specific property
Details
at line 36
void
initialize(Connection $connection, array $options)
Driver options:
- charset => character encoding to set (default is utf8 or utf8mb4 since MySQL 5.5.3)
- sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html
at line 50
DriverException
convertException(PDOException $e)
Converts PDOException to DriverException or its descendant.
at line 74
string
delimite(string $name)
Delimites identifier for use in a SQL statement.
at line 81
string
formatDateTime(DateTimeInterface $value)
Formats date-time for use in a SQL statement.
at line 87
string
formatDateInterval(DateInterval $value)
Formats date-time interval for use in a SQL statement.
at line 93
string
formatLike(string $value, int $pos)
Encodes string for use in a LIKE statement.
at line 101
void
applyLimit(string $sql, int|null $limit, int|null $offset)
Injects LIMIT/OFFSET to the SQL query.
at line 117
array
getTables()
Returns list of tables as tuples [(string) name, (bool) view, [(string) fullName]]
at line 130
array
getColumns(string $table)
Returns metadata for all columns in a table.
As tuples [(string) name, (string) table, (string) nativetype, (int) size, (bool) nullable, (mixed) default, (bool) autoincrement, (bool) primary, (array) vendor]]
at line 152
array
getIndexes(string $table)
Returns metadata for all indexes in a table.
As tuples [(string) name, (string[]) columns, (bool) unique, (bool) primary]
at line 166
array
getForeignKeys(string $table)
Returns metadata for all foreign keys in a table.
As tuples [(string) name, (string) local, (string) table, (string) foreign]
at line 184
array
getColumnTypes(PDOStatement $statement)
Returns associative array of detected types (IStructure::FIELD_*) in result set.
at line 201
bool
isSupported(string $item)
Cheks if driver supports specific property
Traits
Strict class for better experience.