MySqlDriver
class MySqlDriver extends PdoDriver
Supplemental MySQL database driver.
Constants
ErrorAccessDenied |
|
ErrorDuplicateEntry |
|
ErrorDataTruncated |
|
deprecated ERROR_ACCESS_DENIED |
|
deprecated ERROR_DUPLICATE_ENTRY |
|
deprecated ERROR_DATA_TRUNCATED |
|
Methods
void
connect(string $dsn, string|null $user = null, string|null $password = null, array|null $options = null)
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
- supportBooleans => converts INT(1) to boolean
string|null
string
delimite(string $name)
Delimits identifier for use in SQL statement.
string
string
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)
No description
array
getIndexes(string $table)
No description
array
getForeignKeys(string $table)
No description
array
array
bool
isSupported(string $item)
Cheks if driver supports specific property
Details
at line 44
void
connect(string $dsn, string|null $user = null, string|null $password = null, array|null $options = null)
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
- supportBooleans => converts INT(1) to boolean
at line 67
string|null
detectExceptionClass(PDOException $e)
No description
at line 91
string
delimite(string $name)
Delimits identifier for use in SQL statement.
at line 98
string
formatDateTime(DateTimeInterface $value)
Formats date-time for use in a SQL statement.
at line 104
string
formatDateInterval(DateInterval $value)
Formats date-time interval for use in a SQL statement.
at line 110
string
formatLike(string $value, int $pos)
Encodes string for use in a LIKE statement.
at line 118
void
applyLimit(string $sql, int|null $limit, int|null $offset)
Injects LIMIT/OFFSET to the SQL query.
at line 134
array
getTables()
No description
at line 148
array
getColumns(string $table)
No description
at line 178
array
getIndexes(string $table)
No description
at line 193
array
getForeignKeys(string $table)
No description
at line 214
array
getColumnTypes(PDOStatement $statement)
No description
at line 235
array
getResultColumns(PDOStatement $statement)
No description
at line 257
bool
isSupported(string $item)
Cheks if driver supports specific property