StatementPrefetch::$rowCount

The number of rows affected by the last query. Type: int File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 74 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $rowCount = NULL;

StatementPrefetch::$resultRowCount

The number of rows in this result set. Type: int File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 81 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $resultRowCount = 0;

StatementPrefetch::$queryString

The query string. Type: string File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 18 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $queryString;

StatementPrefetch::$pdoConnection

Reference to the PDO connection object for this statement. Type: \PDO File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 39 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $pdoConnection;

StatementPrefetch::$fetchStyle

Holds the current fetch style (which will be used by the next fetch). Type: int See also \PDOStatement::fetch() File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 89 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $fetchStyle = \PDO::FETCH_OBJ;

StatementPrefetch::$fetchOptions

Holds supplementary current fetch options (which will be used by the next fetch). Type: Array File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 96 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $fetchOptions = array( 'class' => 'stdClass', 'constructor_args' => array(), 'object' => NULL, 'column' => 0, );

StatementPrefetch::$driverOptions

Driver-specific options. Can be used by child classes. Type: Array File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 25 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $driverOptions;

StatementPrefetch::$defaultFetchStyle

Holds the default fetch style. Type: int File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 108 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $defaultFetchStyle = \PDO::FETCH_OBJ;

StatementPrefetch::$defaultFetchOptions

Holds supplementary default fetch options. Type: Array File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 115 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code protected $defaultFetchOptions = array( 'class' => 'stdClass', 'constructor_args' => array(), 'object' => NULL, 'column' => 0, );

StatementPrefetch::$dbh

Reference to the Drupal database connection object for this statement. Type: \Drupal\Core\Database\Connection File core/lib/Drupal/Core/Database/StatementPrefetch.php, line 32 Class StatementPrefetch An implementation of StatementInterface that prefetches all data. Namespace Drupal\Core\Database Code public $dbh;