1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0] Formatting issues.

This commit is contained in:
romanb 2009-05-28 11:30:27 +00:00
parent d80b95964e
commit 6e760bacc0

View file

@ -55,14 +55,14 @@ use Doctrine\Common\DoctrineException;
*/ */
class Connection class Connection
{ {
/** /**
* Constant for transaction isolation level READ UNCOMMITTED. * Constant for transaction isolation level READ UNCOMMITTED.
*/ */
const TRANSACTION_READ_UNCOMMITTED = 1; const TRANSACTION_READ_UNCOMMITTED = 1;
/** /**
* Constant for transaction isolation level READ COMMITTED. * Constant for transaction isolation level READ COMMITTED.
*/ */
const TRANSACTION_READ_COMMITTED = 2; const TRANSACTION_READ_COMMITTED = 2;
/** /**
* Constant for transaction isolation level REPEATABLE READ. * Constant for transaction isolation level REPEATABLE READ.
*/ */
@ -143,7 +143,7 @@ class Connection
*/ */
protected $_schemaManager; protected $_schemaManager;
/** /**
* The used DBAL driver. * The used DBAL driver.
* *
* @var Doctrine\DBAL\Driver * @var Doctrine\DBAL\Driver
@ -179,18 +179,18 @@ class Connection
// Create default config and event manager if none given // Create default config and event manager if none given
if ( ! $config) { if ( ! $config) {
$config = new Configuration(); $config = new Configuration();
} }
if ( ! $eventManager) { if ( ! $eventManager) {
$eventManager = new EventManager(); $eventManager = new EventManager();
} }
$this->_config = $config; $this->_config = $config;
$this->_eventManager = $eventManager; $this->_eventManager = $eventManager;
$this->_platform = $driver->getDatabasePlatform(); $this->_platform = $driver->getDatabasePlatform();
$this->_transactionIsolationLevel = $this->_platform->getDefaultTransactionIsolationLevel(); $this->_transactionIsolationLevel = $this->_platform->getDefaultTransactionIsolationLevel();
$this->_quoteIdentifiers = $config->getQuoteIdentifiers(); $this->_quoteIdentifiers = $config->getQuoteIdentifiers();
$this->_platform->setQuoteIdentifiers($this->_quoteIdentifiers); $this->_platform->setQuoteIdentifiers($this->_quoteIdentifiers);
} }
/** /**
* Get the array of parameters used to instantiated this connection instance * Get the array of parameters used to instantiated this connection instance
@ -202,465 +202,466 @@ class Connection
return $this->_params; return $this->_params;
} }
/** /**
* Get the name of the database connected to for this Connection instance * Get the name of the database connected to for this Connection instance
* *
* @return string $database * @return string $database
*/ */
public function getDatabase() public function getDatabase()
{ {
return $this->_driver->getDatabase($this); return $this->_driver->getDatabase($this);
} }
/** /**
* Gets the DBAL driver instance. * Gets the DBAL driver instance.
* *
* @return Doctrine\DBAL\Driver * @return Doctrine\DBAL\Driver
*/ */
public function getDriver() public function getDriver()
{ {
return $this->_driver; return $this->_driver;
} }
/** /**
* Gets the Configuration used by the Connection. * Gets the Configuration used by the Connection.
* *
* @return Doctrine\DBAL\Configuration * @return Doctrine\DBAL\Configuration
*/ */
public function getConfiguration() public function getConfiguration()
{ {
return $this->_config; return $this->_config;
} }
/** /**
* Gets the EventManager used by the Connection. * Gets the EventManager used by the Connection.
* *
* @return Doctrine\Common\EventManager * @return Doctrine\Common\EventManager
*/ */
public function getEventManager() public function getEventManager()
{ {
return $this->_eventManager; return $this->_eventManager;
} }
/** /**
* Gets the DatabasePlatform for the connection. * Gets the DatabasePlatform for the connection.
* *
* @return Doctrine\DBAL\Platforms\AbstractPlatform * @return Doctrine\DBAL\Platforms\AbstractPlatform
*/ */
public function getDatabasePlatform() public function getDatabasePlatform()
{ {
return $this->_platform; return $this->_platform;
} }
/** /**
* Establishes the connection with the database. * Establishes the connection with the database.
* *
* @return boolean * @return boolean
*/ */
public function connect() public function connect()
{ {
if ($this->_isConnected) return false; if ($this->_isConnected) return false;
$driverOptions = isset($this->_params['driverOptions']) ? $driverOptions = isset($this->_params['driverOptions']) ?
$this->_params['driverOptions'] : array(); $this->_params['driverOptions'] : array();
$user = isset($this->_params['user']) ? $user = isset($this->_params['user']) ?
$this->_params['user'] : null; $this->_params['user'] : null;
$password = isset($this->_params['password']) ? $password = isset($this->_params['password']) ?
$this->_params['password'] : null; $this->_params['password'] : null;
$this->_conn = $this->_driver->connect( $this->_conn = $this->_driver->connect(
$this->_params, $this->_params,
$user, $user,
$password, $password,
$driverOptions $driverOptions
); );
$this->_isConnected = true; $this->_isConnected = true;
return true; return true;
} }
/** /**
* Convenience method for PDO::query("...") followed by $stmt->fetch(PDO::FETCH_ASSOC). * Convenience method for PDO::query("...") followed by $stmt->fetch(PDO::FETCH_ASSOC).
* *
* @param string $statement The SQL query. * @param string $statement The SQL query.
* @param array $params The query parameters. * @param array $params The query parameters.
* @return array * @return array
*/ */
public function fetchRow($statement, array $params = array()) public function fetchRow($statement, array $params = array())
{ {
return $this->execute($statement, $params)->fetch(\PDO::FETCH_ASSOC); return $this->execute($statement, $params)->fetch(\PDO::FETCH_ASSOC);
} }
/** /**
* Convenience method for PDO::query("...") followed by $stmt->fetch(PDO::FETCH_NUM). * Convenience method for PDO::query("...") followed by $stmt->fetch(PDO::FETCH_NUM).
* *
* @param string $statement sql query to be executed * @param string $statement sql query to be executed
* @param array $params prepared statement params * @param array $params prepared statement params
* @return array * @return array
*/ */
public function fetchArray($statement, array $params = array()) public function fetchArray($statement, array $params = array())
{ {
return $this->execute($statement, $params)->fetch(\PDO::FETCH_NUM); return $this->execute($statement, $params)->fetch(\PDO::FETCH_NUM);
} }
/** /**
* Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_COLUMN, ...). * Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_COLUMN, ...).
* *
* @param string $statement sql query to be executed * @param string $statement sql query to be executed
* @param array $params prepared statement params * @param array $params prepared statement params
* @param int $colnum 0-indexed column number to retrieve * @param int $colnum 0-indexed column number to retrieve
* @return array * @return array
*/ */
public function fetchColumn($statement, array $params = array(), $colnum = 0) public function fetchColumn($statement, array $params = array(), $colnum = 0)
{ {
return $this->execute($statement, $params)->fetchAll(\PDO::FETCH_COLUMN, $colnum); return $this->execute($statement, $params)->fetchAll(\PDO::FETCH_COLUMN, $colnum);
} }
/** /**
* Whether an actual connection to the database is established. * Whether an actual connection to the database is established.
* *
* @return boolean * @return boolean
*/ */
public function isConnected() public function isConnected()
{ {
return $this->_isConnected; return $this->_isConnected;
} }
/** /**
* Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_BOTH). * Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_BOTH).
* *
* @param string $statement sql query to be executed * @param string $statement sql query to be executed
* @param array $params prepared statement params * @param array $params prepared statement params
* @return array * @return array
*/ */
public function fetchBoth($statement, array $params = array()) public function fetchBoth($statement, array $params = array())
{ {
return $this->execute($statement, $params)->fetchAll(\PDO::FETCH_BOTH); return $this->execute($statement, $params)->fetchAll(\PDO::FETCH_BOTH);
} }
/** /**
* Deletes table row(s) matching the specified identifier. * Deletes table row(s) matching the specified identifier.
* *
* @param string $table The table to delete data from * @param string $table The table to delete data from
* @param array $identifier An associateve array containing identifier fieldname-value pairs. * @param array $identifier An associateve array containing identifier fieldname-value pairs.
* @return integer The number of affected rows * @return integer The number of affected rows
*/ */
public function delete($tableName, array $identifier) public function delete($tableName, array $identifier)
{ {
$this->connect(); $this->connect();
$criteria = array(); $criteria = array();
foreach (array_keys($identifier) as $id) { foreach (array_keys($identifier) as $id) {
$criteria[] = $this->quoteIdentifier($id) . ' = ?'; $criteria[] = $this->quoteIdentifier($id) . ' = ?';
} }
$query = 'DELETE FROM ' $query = 'DELETE FROM '
. $this->quoteIdentifier($tableName) . $this->quoteIdentifier($tableName)
. ' WHERE ' . implode(' AND ', $criteria); . ' WHERE ' . implode(' AND ', $criteria);
return $this->exec($query, array_values($identifier)); return $this->exec($query, array_values($identifier));
} }
/** /**
* Closes the connection. * Closes the connection.
* *
* @return void * @return void
*/ */
public function close() public function close()
{ {
unset($this->_conn); unset($this->_conn);
$this->_isConnected = false; $this->_isConnected = false;
} }
/** /**
* Sets the transaction isolation level. * Sets the transaction isolation level.
* *
* @param integer $level The level to set. * @param integer $level The level to set.
*/ */
public function setTransactionIsolation($level) public function setTransactionIsolation($level)
{ {
$this->_transactionIsolationLevel = $level; $this->_transactionIsolationLevel = $level;
return $this->exec($this->_platform->getSetTransactionIsolationSql($level)); return $this->exec($this->_platform->getSetTransactionIsolationSql($level));
} }
/** /**
* Gets the currently active transaction isolation level. * Gets the currently active transaction isolation level.
* *
* @return integer The current transaction isolation level. * @return integer The current transaction isolation level.
*/ */
public function getTransactionIsolation() public function getTransactionIsolation()
{ {
return $this->_transactionIsolationLevel; return $this->_transactionIsolationLevel;
} }
/** /**
* Updates table row(s) with specified data * Updates table row(s) with specified data
* *
* @throws Doctrine\DBAL\ConnectionException if something went wrong at the database level * @throws Doctrine\DBAL\ConnectionException if something went wrong at the database level
* @param string $table The table to insert data into * @param string $table The table to insert data into
* @param array $values An associateve array containing column-value pairs. * @param array $values An associateve array containing column-value pairs.
* @return mixed boolean false if empty value array was given, * @return mixed boolean false if empty value array was given,
* otherwise returns the number of affected rows * otherwise returns the number of affected rows
*/ */
public function update($tableName, array $data, array $identifier) public function update($tableName, array $data, array $identifier)
{ {
$this->connect(); $this->connect();
if (empty($data)) { if (empty($data)) {
return false; return false;
} }
$set = array(); $set = array();
foreach ($data as $columnName => $value) { foreach ($data as $columnName => $value) {
$set[] = $this->quoteIdentifier($columnName) . ' = ?'; $set[] = $this->quoteIdentifier($columnName) . ' = ?';
} }
$params = array_merge(array_values($data), array_values($identifier)); $params = array_merge(array_values($data), array_values($identifier));
$sql = 'UPDATE ' . $this->quoteIdentifier($tableName) $sql = 'UPDATE ' . $this->quoteIdentifier($tableName)
. ' SET ' . implode(', ', $set) . ' SET ' . implode(', ', $set)
. ' WHERE ' . implode(' = ? AND ', array_keys($identifier)) . ' WHERE ' . implode(' = ? AND ', array_keys($identifier))
. ' = ?'; . ' = ?';
return $this->exec($sql, $params); return $this->exec($sql, $params);
} }
/** /**
* Inserts a table row with specified data. * Inserts a table row with specified data.
* *
* @param string $table The table to insert data into. * @param string $table The table to insert data into.
* @param array $fields An associateve array containing fieldname-value pairs. * @param array $fields An associateve array containing fieldname-value pairs.
* @return mixed boolean false if empty value array was given, * @return mixed boolean false if empty value array was given,
* otherwise returns the number of affected rows * otherwise returns the number of affected rows
*/ */
public function insert($tableName, array $data) public function insert($tableName, array $data)
{ {
$this->connect(); $this->connect();
if (empty($data)) { if (empty($data)) {
return false; return false;
} }
// column names are specified as array keys // column names are specified as array keys
$cols = array(); $cols = array();
$a = array(); $a = array();
foreach ($data as $columnName => $value) { foreach ($data as $columnName => $value) {
$cols[] = $this->quoteIdentifier($columnName); $cols[] = $this->quoteIdentifier($columnName);
$a[] = '?'; $a[] = '?';
} }
$query = 'INSERT INTO ' . $this->quoteIdentifier($tableName) $query = 'INSERT INTO ' . $this->quoteIdentifier($tableName)
. ' (' . implode(', ', $cols) . ') ' . ' (' . implode(', ', $cols) . ') '
. 'VALUES ('; . 'VALUES (';
$query .= implode(', ', $a) . ')'; $query .= implode(', ', $a) . ')';
return $this->exec($query, array_values($data)); return $this->exec($query, array_values($data));
} }
/** /**
* Set the charset on the current connection * Set the charset on the current connection
* *
* @param string charset * @param string charset
*/ */
public function setCharset($charset) public function setCharset($charset)
{ {
$this->exec($this->_platform->getSetCharsetSql($charset)); $this->exec($this->_platform->getSetCharsetSql($charset));
} }
/** /**
* Quote a string so it can be safely used as a table or column name, even if * Quote a string so it can be safely used as a table or column name, even if
* it is a reserved name. * it is a reserved name.
* *
* Delimiting style depends on the underlying database platform that is being used. * Delimiting style depends on the underlying database platform that is being used.
* *
* NOTE: Just because you CAN use delimited identifiers doesn't mean * NOTE: Just because you CAN use delimited identifiers doesn't mean
* you SHOULD use them. In general, they end up causing way more * you SHOULD use them. In general, they end up causing way more
* problems than they solve. * problems than they solve.
* *
* @param string $str identifier name to be quoted * @param string $str identifier name to be quoted
* @param bool $checkOption check the 'quote_identifier' option * @param bool $checkOption check the 'quote_identifier' option
* *
* @return string quoted identifier string * @return string quoted identifier string
*/ */
public function quoteIdentifier($str) public function quoteIdentifier($str)
{ {
if ($this->_quoteIdentifiers) { if ($this->_quoteIdentifiers) {
return $this->_platform->quoteIdentifier($str); return $this->_platform->quoteIdentifier($str);
} }
return $str; return $str;
} }
/** /**
* Quotes a given input parameter. * Quotes a given input parameter.
* *
* @param mixed $input Parameter to be quoted. * @param mixed $input Parameter to be quoted.
* @param string $type Type of the parameter. * @param string $type Type of the parameter.
* @return string The quoted parameter. * @return string The quoted parameter.
*/ */
public function quote($input, $type = null) public function quote($input, $type = null)
{ {
$this->connect(); $this->connect();
return $this->_conn->quote($input, $type); return $this->_conn->quote($input, $type);
} }
/** /**
* Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_ASSOC). * Convenience method for PDO::query("...") followed by $stmt->fetchAll(PDO::FETCH_ASSOC).
* *
* @param string $sql The SQL query. * @param string $sql The SQL query.
* @param array $params The query parameters. * @param array $params The query parameters.
* @return array * @return array
*/ */
public function fetchAll($sql, array $params = array()) public function fetchAll($sql, array $params = array())
{ {
return $this->execute($sql, $params)->fetchAll(\PDO::FETCH_ASSOC); return $this->execute($sql, $params)->fetchAll(\PDO::FETCH_ASSOC);
} }
/** /**
* Convenience method for PDO::query("...") followed by $stmt->fetchColumn(). * Convenience method for PDO::query("...") followed by $stmt->fetchColumn().
* *
* @param string $statement The SQL query. * @param string $statement The SQL query.
* @param array $params The query parameters. * @param array $params The query parameters.
* @param int $colnum 0-indexed column number to retrieve * @param int $colnum 0-indexed column number to retrieve
* @return mixed * @return mixed
*/ */
public function fetchOne($statement, array $params = array(), $colnum = 0) public function fetchOne($statement, array $params = array(), $colnum = 0)
{ {
return $this->execute($statement, $params)->fetchColumn($colnum); return $this->execute($statement, $params)->fetchColumn($colnum);
} }
/** /**
* Prepares an SQL statement. * Prepares an SQL statement.
* *
* @param string $statement * @param string $statement
* @return Statement * @return Statement
*/ */
public function prepare($statement) public function prepare($statement)
{ {
$this->connect(); $this->connect();
return $this->_conn->prepare($statement); return $this->_conn->prepare($statement);
} }
/** /**
* Queries the database with limit and offset added to the query and returns * Queries the database with limit and offset added to the query and returns
* a Statement object. * a Statement object.
* *
* @param string $query * @param string $query
* @param integer $limit * @param integer $limit
* @param integer $offset * @param integer $offset
* @return Statement * @return Statement
*/ */
public function select($query, $limit = 0, $offset = 0) public function select($query, $limit = 0, $offset = 0)
{ {
if ($limit > 0 || $offset > 0) { if ($limit > 0 || $offset > 0) {
$query = $this->_platform->modifyLimitQuery($query, $limit, $offset); $query = $this->_platform->modifyLimitQuery($query, $limit, $offset);
} }
return $this->execute($query); return $this->execute($query);
} }
/** /**
* Executes an SQL SELECT query with the given parameters. * Executes an SQL SELECT query with the given parameters.
* *
* @param string $query sql query * @param string $query sql query
* @param array $params query parameters * @param array $params query parameters
* *
* @return PDOStatement * @return PDOStatement
*/ */
public function execute($query, array $params = array()) public function execute($query, array $params = array())
{ {
$this->connect(); $this->connect();
if ($this->_config->getSqlLogger()) { if ($this->_config->getSqlLogger()) {
$this->_config->getSqlLogger()->logSql($query, $params); $this->_config->getSqlLogger()->logSql($query, $params);
} }
if ( ! empty($params)) { if ( ! empty($params)) {
$stmt = $this->prepare($query); $stmt = $this->prepare($query);
$stmt->execute($params); $stmt->execute($params);
return $stmt; return $stmt;
} else { } else {
$stmt = $this->_conn->query($query); $stmt = $this->_conn->query($query);
$this->_queryCount++; $this->_queryCount++;
return $stmt; return $stmt;
} }
} }
/** /**
* Executes an SQL INSERT/UPDATE/DELETE query with the given parameters. * Executes an SQL INSERT/UPDATE/DELETE query with the given parameters.
* *
* @param string $query sql query * @param string $query sql query
* @param array $params query parameters * @param array $params query parameters
* *
* @return PDOStatement * @return PDOStatement
* @todo Rename to executeUpdate(). * @todo Rename to executeUpdate().
*/ */
public function exec($query, array $params = array()) { public function exec($query, array $params = array())
$this->connect(); {
$this->connect();
if ($this->_config->getSqlLogger()) { if ($this->_config->getSqlLogger()) {
$this->_config->getSqlLogger()->logSql($query, $params); $this->_config->getSqlLogger()->logSql($query, $params);
} }
if ( ! empty($params)) { if ( ! empty($params)) {
$stmt = $this->prepare($query); $stmt = $this->prepare($query);
$stmt->execute($params); $stmt->execute($params);
return $stmt->rowCount(); return $stmt->rowCount();
} else { } else {
$count = $this->_conn->exec($query); $count = $this->_conn->exec($query);
$this->_queryCount++; $this->_queryCount++;
return $count; return $count;
} }
} }
/** /**
* Returns the number of queries executed by the connection. * Returns the number of queries executed by the connection.
* *
* @return integer * @return integer
*/ */
public function getQueryCount() public function getQueryCount()
{ {
return $this->_queryCount; return $this->_queryCount;
} }
/** /**
* Returns the current transaction nesting level. * Returns the current transaction nesting level.
* *
* @return integer The nesting level. A value of 0 means theres no active transaction. * @return integer The nesting level. A value of 0 means theres no active transaction.
*/ */
public function getTransactionNestingLevel() public function getTransactionNestingLevel()
{ {
return $this->_transactionNestingLevel; return $this->_transactionNestingLevel;
} }
/** /**
* Fetch the SQLSTATE associated with the last operation on the database handle * Fetch the SQLSTATE associated with the last operation on the database handle
* *
* @return integer * @return integer
*/ */
public function errorCode() public function errorCode()
{ {
$this->connect(); $this->connect();
return $this->_conn->errorCode(); return $this->_conn->errorCode();
} }
/** /**
* Fetch extended error information associated with the last operation on the database handle * Fetch extended error information associated with the last operation on the database handle
* *
* @return array * @return array
*/ */
public function errorInfo() public function errorInfo()
{ {
$this->connect(); $this->connect();
return $this->_conn->errorInfo(); return $this->_conn->errorInfo();
} }
/** /**
* Returns the ID of the last inserted row, or the last value from a sequence object, * Returns the ID of the last inserted row, or the last value from a sequence object,
* depending on the underlying driver. * depending on the underlying driver.
* *
* Note: This method may not return a meaningful or consistent result across different drivers, * Note: This method may not return a meaningful or consistent result across different drivers,
* because the underlying database may not even support the notion of auto-increment fields or sequences. * because the underlying database may not even support the notion of auto-increment fields or sequences.
* *
* @param string $table Name of the table into which a new row was inserted. * @param string $table Name of the table into which a new row was inserted.
* @param string $field Name of the field into which a new row was inserted. * @param string $field Name of the field into which a new row was inserted.
*/ */
public function lastInsertId($seqName = null) public function lastInsertId($seqName = null)
{ {
$this->connect(); $this->connect();