class MySqlDriver implements Driver, ResultDriver

The dibi driver for MySQL database.

Driver options:

  • host => the MySQL server host name
  • port (int) => the port number to attempt to connect to the MySQL server
  • socket => the socket or named pipe
  • username (or user)
  • password (or pass)
  • database => the database name to select
  • flags (int) => driver specific constants (MYSQLCLIENT*)
  • charset => character encoding to set (default is utf8)
  • persistent (bool) => try to find a persistent link?
  • unbuffered (bool) => sends query without fetching and buffering the result rows automatically?
  • sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html
  • resource (resource) => existing connection resource
  • lazy, profiler, result, substitutes, ... => see Dibi\Connection options

Constants

ERROR_ACCESS_DENIED

ERROR_DUPLICATE_ENTRY

ERROR_DATA_TRUNCATED

Methods

__construct()

No description

void
connect(array $config)

Connects to a database.

void
disconnect()

Disconnects from a database.

query($sql)

Executes the SQL query.

array
getInfo()

Retrieves information about the most recently executed query.

int|false
getAffectedRows()

Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.

int|false
getInsertId($sequence)

Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.

void
begin($savepoint = NULL)

Begins a transaction (if supported).

void
commit($savepoint = NULL)

Commits statements in a transaction.

void
rollback($savepoint = NULL)

Rollback changes in a transaction.

mixed
getResource()

Returns the connection resource.

getReflector()

Returns the connection reflector.

createResultDriver($resource)

Result set driver factory.

string
escapeText($value)

Encodes data for use in a SQL statement.

string
escapeBinary($value)

No description

string
escapeIdentifier($value)

No description

string
escapeBool($value)

No description

string
escapeDate($value)

No description

string
escapeDateTime($value)

No description

string
escapeLike($value, $pos)

Encodes string for use in a LIKE statement.

string
unescapeBinary($value)

Decodes data from result set.

escape($value, $type) deprecated

No description

void
applyLimit($sql, $limit, $offset)

Injects LIMIT/OFFSET to the SQL query.

void
__destruct()

Automatically frees the resources allocated for this result set.

int
getRowCount()

Returns the number of rows in a result set.

array
fetch($assoc)

Fetches the row at current position and moves the internal cursor to the next position.

bool
seek($row)

Moves cursor position without fetching row.

void
free()

Frees the resources allocated for this result set.

array
getResultColumns()

Returns metadata for all columns in a result set.

mixed
getResultResource()

Returns the result set resource.

Details

at line 55
__construct()

No description

at line 68
void connect(array $config)

Connects to a database.

Parameters

array $config

Return Value

void

Exceptions

Exception

at line 140
void disconnect()

Disconnects from a database.

Return Value

void

at line 152
ResultDriver|null query($sql)

Executes the SQL query.

Parameters

$sql

Return Value

ResultDriver|null

Exceptions

DriverException

at line 173
array getInfo()

Retrieves information about the most recently executed query.

Return Value

array

at line 192
int|false getAffectedRows()

Gets the number of affected rows by the last INSERT, UPDATE or DELETE query.

Return Value

int|false

number of rows or FALSE on error

at line 202
int|false getInsertId($sequence)

Retrieves the ID generated for an AUTO_INCREMENT column by the previous INSERT query.

Parameters

$sequence

Return Value

int|false

int on success or FALSE on failure

at line 214
void begin($savepoint = NULL)

Begins a transaction (if supported).

Parameters

$savepoint

Return Value

void

Exceptions

DriverException

at line 226
void commit($savepoint = NULL)

Commits statements in a transaction.

Parameters

$savepoint

Return Value

void

Exceptions

DriverException

at line 238
void rollback($savepoint = NULL)

Rollback changes in a transaction.

Parameters

$savepoint

Return Value

void

Exceptions

DriverException

at line 248
mixed getResource()

Returns the connection resource.

Return Value

mixed

at line 258
Reflector getReflector()

Returns the connection reflector.

Return Value

Reflector

at line 269
ResultDriver createResultDriver($resource)

Result set driver factory.

Parameters

$resource

Return Value

ResultDriver

at line 285
string escapeText($value)

Encodes data for use in a SQL statement.

Parameters

$value

Return Value

string

encoded value

at line 298
string escapeBinary($value)

No description

Parameters

$value

Return Value

string

at line 311
string escapeIdentifier($value)

No description

Parameters

$value

Return Value

string

at line 322
string escapeBool($value)

No description

Parameters

$value

Return Value

string

at line 332
string escapeDate($value)

No description

Parameters

$value

Return Value

string

at line 345
string escapeDateTime($value)

No description

Parameters

$value

Return Value

string

at line 360
string escapeLike($value, $pos)

Encodes string for use in a LIKE statement.

Parameters

$value
$pos

Return Value

string

at line 372
string unescapeBinary($value)

Decodes data from result set.

Parameters

$value

Return Value

string

at line 379
escape($value, $type) deprecated

deprecated

No description

Parameters

$value
$type

at line 393
void applyLimit($sql, $limit, $offset)

Injects LIMIT/OFFSET to the SQL query.

Parameters

$sql
$limit
$offset

Return Value

void

at line 413
void __destruct()

Automatically frees the resources allocated for this result set.

Return Value

void

at line 423
int getRowCount()

Returns the number of rows in a result set.

Return Value

int

at line 437
array fetch($assoc)

Fetches the row at current position and moves the internal cursor to the next position.

Parameters

$assoc

Return Value

array

array on success, nonarray if no next record

at line 449
bool seek($row)

Moves cursor position without fetching row.

Parameters

$row

Return Value

bool

TRUE on success, FALSE if unable to seek to specified record

Exceptions

Exception

at line 463
void free()

Frees the resources allocated for this result set.

Return Value

void

at line 474
array getResultColumns()

Returns metadata for all columns in a result set.

Return Value

array

of {name, nativetype [, table, fullname, (int) size, (bool) nullable, (mixed) default, (bool) autoincrement, (array) vendor ]}

at line 497
mixed getResultResource()

Returns the result set resource.

Return Value

mixed

Traits

Better OOP experience.