Search for fetch
- Search 7.x for fetch
- Search 8.9.x for fetch
- Search 10.3.x for fetch
- Search 11.x for fetch
- Other projects
Title | Object type | File name | Summary |
---|---|---|---|
StatementInterface::fetchAll | function | core/ |
Returns an array containing all of the result set rows. |
StatementInterface::fetchAllAssoc | function | core/ |
Returns the result set as an associative array keyed by the given field. |
StatementInterface::fetchAllKeyed | function | core/ |
Returns the entire result set as a single associative array. |
StatementInterface::fetchAssoc | function | core/ |
Fetches the next row and returns it as an associative array. |
StatementInterface::fetchCol | function | core/ |
Returns an entire single column of a result set as an indexed array. |
StatementInterface::fetchField | function | core/ |
Returns a single field from the next record of a result set. |
StatementInterface::fetchObject | function | core/ |
Fetches the next row and returns it as an object. |
StatementInterface::setFetchMode | function | core/ |
Sets the default fetch mode for this statement. |
StatementPrefetch | class | core/ |
An implementation of StatementInterface that prefetches all data. |
StatementPrefetch.php | file | core/ |
|
StatementPrefetch::$columnNames | property | core/ |
The list of column names in this result set. |
StatementPrefetch::$connection | property | core/ |
The Drupal database connection object. |
StatementPrefetch::$currentKey | property | core/ |
The key of the current row. |
StatementPrefetch::$currentRow | property | core/ |
The current row, retrieved in \PDO::FETCH_ASSOC format. |
StatementPrefetch::$data | property | core/ |
Main data store. |
StatementPrefetch::$defaultFetchOptions | property | core/ |
Holds supplementary default fetch options. |
StatementPrefetch::$defaultFetchStyle | property | core/ |
Holds the default fetch style. |
StatementPrefetch::$driverOptions | property | core/ |
Driver-specific options. Can be used by child classes. |
StatementPrefetch::$fetchOptions | property | core/ |
Holds supplementary current fetch options (which will be used by the next fetch). |
StatementPrefetch::$fetchStyle | property | core/ |
Holds the current fetch style (which will be used by the next fetch). |
StatementPrefetch::$pdoConnection | property | core/ |
Reference to the PDO connection object for this statement. |
StatementPrefetch::$queryString | property | core/ |
The query string. |
StatementPrefetch::$resultRowCount | property | core/ |
The number of rows in this result set. |
StatementPrefetch::$rowCount | property | core/ |
The number of rows matched by the last query. |
StatementPrefetch::$rowCountEnabled | property | core/ |
Is rowCount() execution allowed. |
StatementPrefetch::current | function | core/ |
Return the current row formatted according to the current fetch style. |
StatementPrefetch::execute | function | core/ |
Executes a prepared statement. |
StatementPrefetch::fetch | function | core/ |
Fetches the next row from a result set. |
StatementPrefetch::fetchAll | function | core/ |
Returns an array containing all of the result set rows. |
StatementPrefetch::fetchAllAssoc | function | core/ |
Returns the result set as an associative array keyed by the given field. |
StatementPrefetch::fetchAllKeyed | function | core/ |
Returns the entire result set as a single associative array. |
StatementPrefetch::fetchAssoc | function | core/ |
Fetches the next row and returns it as an associative array. |
StatementPrefetch::fetchCol | function | core/ |
Returns an entire single column of a result set as an indexed array. |
StatementPrefetch::fetchColumn | function | core/ |
|
StatementPrefetch::fetchField | function | core/ |
Returns a single field from the next record of a result set. |
StatementPrefetch::fetchObject | function | core/ |
Fetches the next row and returns it as an object. |
StatementPrefetch::getConnectionTarget | function | core/ |
|
StatementPrefetch::getQueryString | function | core/ |
Gets the query string of this statement. |
StatementPrefetch::getStatement | function | core/ |
Grab a PDOStatement object from a given query and its arguments. |
StatementPrefetch::key | function | core/ |
|
StatementPrefetch::next | function | core/ |
|
StatementPrefetch::rewind | function | core/ |
|
StatementPrefetch::rowCount | function | core/ |
Returns the number of rows matched by the last SQL statement. |
StatementPrefetch::setFetchMode | function | core/ |
Sets the default fetch mode for this statement. |
StatementPrefetch::throwPDOException | function | core/ |
Throw a PDO Exception based on the last PDO error. |
StatementPrefetch::valid | function | core/ |
|
StatementPrefetch::__construct | function | core/ |
Constructs a StatementPrefetch object. |
StatementPrefetch::__get | function | core/ |
Implements the magic __get() method. |
StatementPrefetch::__set | function | core/ |
Implements the magic __set() method. |
StatementWrapper::fetch | function | core/ |
Fetches the next row from a result set. |
Pagination
- Previous page
- Page 4
- Next page
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.