class Statement in Drupal driver for SQL Server and SQL Azure 8.2
Same name in this branch
- 8.2 drivers/lib/Drupal/Driver/Database/sqlsrv/Statement.php \Drupal\Driver\Database\sqlsrv\Statement
- 8.2 drivers/lib/Drupal/Driver/Database/sqlsrv/PDO/Statement.php \Drupal\Driver\Database\sqlsrv\PDO\Statement
Same name and namespace in other branches
- 8 drivers/lib/Drupal/Driver/Database/sqlsrv/Statement.php \Drupal\Driver\Database\sqlsrv\Statement
Hierarchy
- class \Drupal\Driver\Database\sqlsrv\PDO\Statement extends \PDOStatement implements \Drupal\Driver\Database\sqlsrv\PDO\Countable
- class \Drupal\Driver\Database\sqlsrv\Statement implements StatementInterface
Expanded class hierarchy of Statement
File
- drivers/
lib/ Drupal/ Driver/ Database/ sqlsrv/ Statement.php, line 13 - Definition of Drupal\Driver\Database\sqlsrv\Statement
Namespace
Drupal\Driver\Database\sqlsrvView source
class Statement extends \Drupal\Driver\Database\sqlsrv\PDO\Statement implements StatementInterface {
/**
* Is rowCount() execution allowed.
*
* @var bool
*/
public $allowRowCount = false;
/**
* Reference to the database connection object for this statement.
*
* The name $dbh is inherited from \PDOStatement.
*
* @var \Drupal\Core\Database\Connection
*/
public $dbh;
protected function __construct(Connection $dbh) {
$this->allowRowCount = true;
$this->dbh = $dbh;
$this
->setFetchMode(\PDO::FETCH_OBJ);
}
/**
* {@inheritdoc}
*/
public function execute($args = [], $options = []) {
if (isset($options['fetch'])) {
if (is_string($options['fetch'])) {
// Default to an object. Note: db fields will be added to the object
// before the constructor is run. If you need to assign fields after
// the constructor is run, see http://drupal.org/node/315092.
$this
->setFetchMode(PDO::FETCH_CLASS, $options['fetch']);
}
else {
$this
->setFetchMode($options['fetch']);
}
}
$logger = $this->dbh
->getLogger();
$query_start = microtime(true);
// If parameteres have already been binded
// to the statement and we pass an empty array here
// we will get a PDO Exception.
if (empty($args)) {
$args = null;
}
// Execute the query. Bypass parent override
// and directly call PDOStatement implementation.
$return = $this
->doExecute($args);
// Bind column types properly.
$this
->fixColumnBindings();
if (!empty($logger)) {
$query_end = microtime(true);
$logger
->log($this, $args, $query_end - $query_start);
}
return $return;
}
/**
* {@inheritdoc}
*/
public function doExecute($args = [], $options = []) {
if (isset($options['fetch'])) {
if (is_string($options['fetch'])) {
// \PDO::FETCH_PROPS_LATE tells __construct() to run before properties
// are added to the object.
$this
->setFetchMode(\PDO::FETCH_CLASS | \PDO::FETCH_PROPS_LATE, $options['fetch']);
}
else {
$this
->setFetchMode($options['fetch']);
}
}
$logger = $this->dbh
->getLogger();
if (!empty($logger)) {
$query_start = microtime(true);
}
$return = parent::execute($args);
if (!empty($logger)) {
$query_end = microtime(true);
$logger
->log($this, $args, $query_end - $query_start);
}
return $return;
}
/**
* {@inheritdoc}
*/
public function getQueryString() {
return $this->queryString;
}
/**
* {@inheritdoc}
*/
public function fetchCol($index = 0) {
return $this
->fetchAll(\PDO::FETCH_COLUMN, $index);
}
/**
* {@inheritdoc}
*/
public function fetchAllAssoc($key, $fetch = null) {
$return = [];
if (isset($fetch)) {
if (is_string($fetch)) {
$this
->setFetchMode(\PDO::FETCH_CLASS, $fetch);
}
else {
$this
->setFetchMode($fetch);
}
}
foreach ($this as $record) {
$record_key = is_object($record) ? $record->{$key} : $record[$key];
$return[$record_key] = $record;
}
return $return;
}
/**
* {@inheritdoc}
*/
public function fetchAllKeyed($key_index = 0, $value_index = 1) {
$return = [];
$this
->setFetchMode(\PDO::FETCH_NUM);
foreach ($this as $record) {
$return[$record[$key_index]] = $record[$value_index];
}
return $return;
}
/**
* {@inheritdoc}
*/
public function fetchField($index = 0) {
// Call \PDOStatement::fetchColumn to fetch the field.
return $this
->fetchColumn($index);
}
/**
* {@inheritdoc}
*/
public function fetchAssoc() {
// Call \PDOStatement::fetch to fetch the row.
return $this
->fetch(\PDO::FETCH_ASSOC);
}
/**
* {@inheritdoc}
*/
public function rowCount() {
// SELECT query should not use the method.
if ($this->allowRowCount) {
return parent::rowCount();
}
else {
throw new RowCountException();
}
}
/**
* {@inheritdoc}
*/
public function setFetchMode($mode, $a1 = null, $a2 = []) {
// Call \PDOStatement::setFetchMode to set fetch mode.
// \PDOStatement is picky about the number of arguments in some cases so we
// need to be pass the exact number of arguments we where given.
switch (func_num_args()) {
case 1:
return parent::setFetchMode($mode);
case 2:
return parent::setFetchMode($mode, $a1);
case 3:
default:
return parent::setFetchMode($mode, $a1, $a2);
}
}
/**
* {@inheritdoc}
*/
public function fetchAll($mode = null, $column_index = null, $constructor_arguments = null) {
// Call \PDOStatement::fetchAll to fetch all rows.
// \PDOStatement is picky about the number of arguments in some cases so we
// need to be pass the exact number of arguments we where given.
switch (func_num_args()) {
case 0:
return parent::fetchAll();
case 1:
return parent::fetchAll($mode);
case 2:
return parent::fetchAll($mode, $column_index);
case 3:
default:
return parent::fetchAll($mode, $column_index, $constructor_arguments);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Statement:: |
public | property | Is rowCount() execution allowed. | |
Statement:: |
protected | property | ||
Statement:: |
protected | property | Reference to the Connection | |
Statement:: |
protected | property | ODBC Codes for failed communcation link/dropped connections | |
Statement:: |
public | property | Reference to the database connection object for this statement. | |
Statement:: |
protected | property | ODBC Codes for integrity constraint violation errors. | |
Statement:: |
protected | property | Special PDO options | |
Statement:: |
protected | property | An MD5 signature for the query | |
Statement:: |
public | function | Summary of BindArguments | |
Statement:: |
public | function | Summary of BindExpressions | |
Statement:: |
public | function | Overrides the default \PDOStatement method to add the named parameter and it's reference to the array of bound parameters - then accesses and returns parent::bindParam method | |
Statement:: |
public | function | Overrides the default \PDOStatement method to add the named parameter and it's value to the array of bound values | |
Statement:: |
public | function | Binds a set of values to a PDO Statement, taking care of properly managing binary data. | |
Statement:: |
public | function | Return the number of rows. | |
Statement:: |
public | function | ||
Statement:: |
public | function |
Execute a statement. Overrides Statement:: |
|
Statement:: |
public | function |
Returns an array containing all of the result set rows. Overrides StatementInterface:: |
|
Statement:: |
public | function |
Returns the result set as an associative array keyed by the given field. Overrides StatementInterface:: |
|
Statement:: |
public | function |
Optimized for common use cases. Overrides Statement:: |
|
Statement:: |
public | function |
Fetches the next row and returns it as an associative array. Overrides StatementInterface:: |
|
Statement:: |
public | function |
Returns an entire single column of a result set as an indexed array. Overrides StatementInterface:: |
|
Statement:: |
public | function |
Returns a single field from the next record of a result set. Overrides StatementInterface:: |
|
Statement:: |
protected | function | Make sure that SQL Server types are properly binded to PHP types. | |
Statement:: |
public | function | Get parameters bound to this statement, useful for debugging purposes. | |
Statement:: |
protected | function | Cached version of getColumnMeta(). | |
Statement:: |
public | function |
Gets the query string of this statement. Overrides StatementInterface:: |
|
Statement:: |
constant | Delay between retries in seconds. | ||
Statement:: |
constant | Maximum number a failed query can be retried in case of failure due to integrity constraint violations or dropped connections. | ||
Statement:: |
public | function |
Returns the number of rows affected by the last SQL statement. Overrides StatementInterface:: |
|
Statement:: |
public | function | Set a reference to the connection. | |
Statement:: |
public | function |
Sets the default fetch mode for this statement. Overrides StatementInterface:: |
|
Statement:: |
protected | function | ||
StatementInterface:: |
public | function | Fetches the next row from a result set. | 2 |
StatementInterface:: |
public | function | Fetches the next row and returns it as an object. | 2 |