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 utf8mb4)
- sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html
- convertBoolean => converts INT(1) to boolean
Delimites identifier for use in a SQL statement.
Encodes string for use in a LIKE statement.
Injects LIMIT/OFFSET to the SQL query.
No description
No description
No description
No description
Returns associative array of detected types (IStructure::FIELD_*) in result set.
Cheks if driver supports specific property
Details
at line 35
void
initialize(Connection $connection, array $options)
Driver options:
- charset => character encoding to set (default is utf8mb4)
- sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html
- convertBoolean => converts INT(1) to boolean
at line 51
DriverException
convertException(PDOException $e)
Converts PDOException to DriverException or its descendant.
at line 75
string
delimite(string $name)
Delimites identifier for use in a SQL statement.
at line 82
string
formatDateTime(DateTimeInterface $value)
Formats date-time for use in a SQL statement.
at line 88
string
formatDateInterval(DateInterval $value)
Formats date-time interval for use in a SQL statement.
at line 94
string
formatLike(string $value, int $pos)
Encodes string for use in a LIKE statement.
at line 102
void
applyLimit(string $sql, int|null $limit, int|null $offset)
Injects LIMIT/OFFSET to the SQL query.
at line 118
array
getTables()
No description
at line 133
array
getColumns(string $table)
No description
at line 157
array
getIndexes(string $table)
No description
at line 173
array
getForeignKeys(string $table)
No description
at line 196
array
getColumnTypes(PDOStatement $statement)
Returns associative array of detected types (IStructure::FIELD_*) in result set.
at line 216
bool
isSupported(string $item)
Cheks if driver supports specific property