| Name | Description |
|---|---|
| DatabaseConnection::$connectionOptions | The connection information for this connection object. |
| DatabaseConnection::$defaultPrefix | The default prefix used by this database connection. |
| DatabaseConnection::$driverClasses | Index of what driver-specific class to use for various operations. |
| DatabaseConnection::$key | The key representing this connection. |
| DatabaseConnection::$logger | The current database logging object for this connection. |
| DatabaseConnection::$prefixes | The non-default prefixes used by this database connection. |
| DatabaseConnection::$statementClass | The name of the Statement class for this connection. |
| DatabaseConnection::$target | The database target this connection is for. |
| DatabaseConnection::$temporaryNameIndex | An index used to generate unique temporary table names. |
| DatabaseConnection::$transactionalDDLSupport | Whether this database connection supports transactional DDL. |
| DatabaseConnection::$transactionLayers | Tracks the number of "layers" of transactions currently active. |
| DatabaseConnection::$transactionSupport | Whether this database connection supports transactions. |
| DatabaseConnection_mysql::$shutdownRegistered | Flag to indicate if we have registered the nextID cleanup function. |
| Name | Description |
|---|---|
| DatabaseConnection::commit | Throws an exception to deny direct access to transaction commits. |
| DatabaseConnection::defaultOptions | Returns the default query options for any given query. |
| DatabaseConnection::delete | Prepares and returns a DELETE query object. |
| DatabaseConnection::escapeAlias | Escapes an alias name string. |
| DatabaseConnection::escapeField | Escapes a field name string. |
| DatabaseConnection::escapeLike | Escapes characters that work as wildcard characters in a LIKE pattern. |
| DatabaseConnection::escapeTable | Escapes a table name string. |
| DatabaseConnection::expandArguments | Expands out shorthand placeholders. |
| DatabaseConnection::generateTemporaryTableName | Generates a temporary table name. |
| DatabaseConnection::getConnectionOptions | Returns the connection information for this connection object. |
| DatabaseConnection::getDriverClass | Gets the driver-specific override class if any for the specified class. |
| DatabaseConnection::getKey | Returns the key this connection is associated with. |
| DatabaseConnection::getLogger | Gets the current logging object for this connection. |
| DatabaseConnection::getTarget | Returns the target this connection is associated with. |
| DatabaseConnection::insert | Prepares and returns an INSERT query object. |
| DatabaseConnection::inTransaction | Determines if there is an active transaction open. |
| DatabaseConnection::makeSequenceName | Creates the appropriate sequence name for a given table and serial field. |
| DatabaseConnection::merge | Prepares and returns a MERGE query object. |
| DatabaseConnection::popTransaction | Decreases the depth of transaction nesting. |
| DatabaseConnection::prefixTables | Appends a database prefix to all tables in a query. |
| DatabaseConnection::prepareQuery | Prepares a query string and returns the prepared statement. |
| DatabaseConnection::pushTransaction | Increases the depth of transaction nesting. |
| DatabaseConnection::query | Executes a query string against the database. |
| DatabaseConnection::rollback | Rolls back the transaction entirely or to a named savepoint. |
| DatabaseConnection::schema | Returns a DatabaseSchema object for manipulating the schema. |
| DatabaseConnection::select | Prepares and returns a SELECT query object. |
| DatabaseConnection::setKey | Tells this connection object what its key is. |
| DatabaseConnection::setLogger | Associates a logging object with this connection. |
| DatabaseConnection::setPrefix | Preprocess the prefixes used by this database connection. |
| DatabaseConnection::setTarget | Tells this connection object what its target value is. |
| DatabaseConnection::startTransaction | Returns a new DatabaseTransaction object on this connection. |
| DatabaseConnection::supportsTransactionalDDL | Determines if this driver supports transactional DDL. |
| DatabaseConnection::supportsTransactions | Determines if this driver supports transactions. |
| DatabaseConnection::tablePrefix | Find the prefix for a table. |
| DatabaseConnection::transactionDepth | Determines current transaction depth. |
| DatabaseConnection::truncate | Prepares and returns a TRUNCATE query object. |
| DatabaseConnection::update | Prepares and returns an UPDATE query object. |
| DatabaseConnection::version | Returns the version of the database server. |
| DatabaseConnection_mysql::databaseType | Returns the name of the PDO driver for this connection. Overrides DatabaseConnection::databaseType |
| DatabaseConnection_mysql::driver | Returns the type of database driver. Overrides DatabaseConnection::driver |
| DatabaseConnection_mysql::mapConditionOperator | Gets any special processing requirements for the condition operator. Overrides DatabaseConnection::mapConditionOperator |
| DatabaseConnection_mysql::nextId | Retrieves an unique id from a given sequence. Overrides DatabaseConnection::nextId |
| DatabaseConnection_mysql::nextIdDelete | |
| DatabaseConnection_mysql::queryRange | Runs a limited-range query on this database object. Overrides DatabaseConnection::queryRange |
| DatabaseConnection_mysql::queryTemporary | Runs a SELECT query and stores its results in a temporary table. Overrides DatabaseConnection::queryTemporary |
| DatabaseConnection_mysql::__construct | Overrides DatabaseConnection::__construct |
drupal/
<?php
class DatabaseConnection_mysql extends DatabaseConnection {
/**
* Flag to indicate if we have registered the nextID cleanup function.
*
* @var boolean
*/
protected $shutdownRegistered = FALSE;
public function __construct(array $connection_options = array()) {
// This driver defaults to transaction support, except if explicitly passed FALSE.
$this->transactionSupport = !isset($connection_options['transactions']) || ($connection_options['transactions'] !== FALSE);
// MySQL never supports transactional DDL.
$this->transactionalDDLSupport = FALSE;
$this->connectionOptions = $connection_options;
// The DSN should use either a socket or a host/port.
if (isset($connection_options['unix_socket'])) {
$dsn = 'mysql:unix_socket=' . $connection_options['unix_socket'];
}
else {
// Default to TCP connection on port 3306.
$dsn = 'mysql:host=' . $connection_options['host'] . ';port=' . (empty($connection_options['port']) ? 3306 : $connection_options['port']);
}
$dsn .= ';dbname=' . $connection_options['database'];
parent::__construct($dsn, $connection_options['username'], $connection_options['password'], array(
// So we don't have to mess around with cursors and unbuffered queries by default.
PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => TRUE,
// Because MySQL's prepared statements skip the query cache, because it's dumb.
PDO::ATTR_EMULATE_PREPARES => TRUE,
// Force column names to lower case.
PDO::ATTR_CASE => PDO::CASE_LOWER,
));
// Force MySQL to use the UTF-8 character set. Also set the collation, if a
// certain one has been set; otherwise, MySQL defaults to 'utf8_general_ci'
// for UTF-8.
if (!empty($connection_options['collation'])) {
$this->exec('SET NAMES utf8 COLLATE ' . $connection_options['collation']);
}
else {
$this->exec('SET NAMES utf8');
}
// Force MySQL's behavior to conform more closely to SQL standards.
// This allows Drupal to run almost seamlessly on many different
// kinds of database systems. These settings force MySQL to behave
// the same as postgresql, or sqlite in regards to syntax interpretation
// and invalid data handling. See http://drupal.org/node/344575 for further discussion.
$this->exec("SET sql_mode='ANSI,TRADITIONAL'");
}
public function queryRange($query, $from, $count, array $args = array(), array $options = array()) {
return $this->query($query . ' LIMIT ' . (int) $from . ', ' . (int) $count, $args, $options);
}
public function queryTemporary($query, array $args = array(), array $options = array()) {
$tablename = $this->generateTemporaryTableName();
$this->query(preg_replace('/^SELECT/i', 'CREATE TEMPORARY TABLE {' . $tablename . '} Engine=MEMORY SELECT', $query), $args, $options);
return $tablename;
}
public function driver() {
return 'mysql';
}
public function databaseType() {
return 'mysql';
}
public function mapConditionOperator($operator) {
// We don't want to override any of the defaults.
return NULL;
}
public function nextId($existing_id = 0) {
$new_id = $this->query('INSERT INTO {sequences} () VALUES ()', array(), array('return' => Database::RETURN_INSERT_ID));
// This should only happen after an import or similar event.
if ($existing_id >= $new_id) {
// If we INSERT a value manually into the sequences table, on the next
// INSERT, MySQL will generate a larger value. However, there is no way
// of knowing whether this value already exists in the table. MySQL
// provides an INSERT IGNORE which would work, but that can mask problems
// other than duplicate keys. Instead, we use INSERT ... ON DUPLICATE KEY
// UPDATE in such a way that the UPDATE does not do anything. This way,
// duplicate keys do not generate errors but everything else does.
$this->query('INSERT INTO {sequences} (value) VALUES (:value) ON DUPLICATE KEY UPDATE value = value', array(':value' => $existing_id));
$new_id = $this->query('INSERT INTO {sequences} () VALUES ()', array(), array('return' => Database::RETURN_INSERT_ID));
}
if (!$this->shutdownRegistered) {
// Use register_shutdown_function() here to keep the database system
// independent of Drupal.
register_shutdown_function(array($this, 'nextIdDelete'));
$shutdownRegistered = TRUE;
}
return $new_id;
}
public function nextIdDelete() {
// While we want to clean up the table to keep it up from occupying too
// much storage and memory, we must keep the highest value in the table
// because InnoDB uses an in-memory auto-increment counter as long as the
// server runs. When the server is stopped and restarted, InnoDB
// reinitializes the counter for each table for the first INSERT to the
// table based solely on values from the table so deleting all values would
// be a problem in this case. Also, TRUNCATE resets the auto increment
// counter.
try {
$max_id = $this->query('SELECT MAX(value) FROM {sequences}')->fetchField();
// We know we are using MySQL here, no need for the slower db_delete().
$this->query('DELETE FROM {sequences} WHERE value < :value', array(':value' => $max_id));
}
// During testing, this function is called from shutdown with the
// simpletest prefix stored in $this->connection, and those tables are gone
// by the time shutdown is called so we need to ignore the database
// errors. There is no problem with completely ignoring errors here: if
// these queries fail, the sequence will work just fine, just use a bit
// more database storage and memory.
catch (PDOException $e) {
}
}
}
?>