DatabaseStatementInterface::fetchCol |
function |
includes/database/database.inc |
Returns an entire single column of a result set as an indexed array. |
file_metadata_fetch_image_dimensions |
function |
modules/file/file.file.inc |
Fetch the dimensions of an image and store them in the file metadata array. |
DatabaseStatementBase::fetchAllAssoc |
function |
includes/database/database.inc |
Returns the result set as an associative array keyed by the given field. |
DatabaseStatementBase::fetchAllKeyed |
function |
includes/database/database.inc |
Returns the entire result set as a single associative array. |
DatabaseStatementPrefetch::fetchAssoc |
function |
includes/database/prefetch.inc |
Fetches the next row and returns it as an associative array. |
DatabaseStatementEmpty::fetchAllAssoc |
function |
includes/database/database.inc |
Returns the result set as an associative array keyed by the given field. |
DatabaseStatementEmpty::fetchAllKeyed |
function |
includes/database/database.inc |
Returns the entire result set as a single associative array. |
DatabaseStatementPrefetch::fetchField |
function |
includes/database/prefetch.inc |
Returns a single field from the next record of a result set. |
DatabaseStatementPrefetch::$currentKey |
property |
includes/database/prefetch.inc |
The key of the current row. |
DatabaseStatementPrefetch::$currentRow |
property |
includes/database/prefetch.inc |
The current row, retrieved in PDO::FETCH_ASSOC format. |
DatabaseStatementPrefetch::__construct |
function |
includes/database/prefetch.inc |
|
DatabaseStatementInterface::fetchField |
function |
includes/database/database.inc |
Returns a single field from the next record of a result set. |
DatabaseStatementInterface::fetchAssoc |
function |
includes/database/database.inc |
Fetches the next row and returns it as an associative array. |
DatabaseStatementPrefetch::$fetchStyle |
property |
includes/database/prefetch.inc |
Holds the current fetch style (which will be used by the next fetch). |
DatabaseStatementPrefetch::fetchObject |
function |
includes/database/prefetch.inc |
|
DatabaseStatementPrefetch::fetchColumn |
function |
includes/database/prefetch.inc |
|
DatabaseStatementPrefetch::$columnNames |
property |
includes/database/prefetch.inc |
The list of column names in this result set. |
DatabaseStatementPrefetch::getStatement |
function |
includes/database/prefetch.inc |
Grab a PDOStatement object from a given query and its arguments. |
DatabaseStatementPrefetch::$queryString |
property |
includes/database/prefetch.inc |
The query string. |
DatabaseStatementPrefetch::setFetchMode |
function |
includes/database/prefetch.inc |
|
DatabaseStatementPrefetch::fetchAllAssoc |
function |
includes/database/prefetch.inc |
Returns the result set as an associative array keyed by the given field. |
DatabaseStatementPrefetch::$fetchOptions |
property |
includes/database/prefetch.inc |
Holds supplementary current fetch options (which will be used by the next fetch). |
DatabaseStatementPrefetch::fetchAllKeyed |
function |
includes/database/prefetch.inc |
Returns the entire result set as a single associative array. |
DatabaseFetch2TestCase::testQueryFetchNum |
function |
modules/simpletest/tests/database_test.test |
|
DatabaseStatementInterface::fetchAllAssoc |
function |
includes/database/database.inc |
Returns the result set as an associative array keyed by the given field. |
DatabaseStatementPrefetch::$driverOptions |
property |
includes/database/prefetch.inc |
Driver-specific options. Can be used by child classes. |
DatabaseStatementPrefetch::getQueryString |
function |
includes/database/prefetch.inc |
Return the object's SQL query string. |
DatabaseStatementInterface::fetchAllKeyed |
function |
includes/database/database.inc |
Returns the entire result set as a single associative array. |
DatabaseFetch2TestCase::testQueryFetchCol |
function |
modules/simpletest/tests/database_test.test |
Confirm that we can fetch an entire column of a result set at once. |
DatabaseFetchTestCase::testQueryFetchClass |
function |
modules/simpletest/tests/database_test.test |
Confirm that we can fetch a record into a new instance of a custom class. |
DatabaseStatementPrefetch::$resultRowCount |
property |
includes/database/prefetch.inc |
The number of rows in this result set. |
DatabaseFetchTestCase::testQueryFetchArray |
function |
modules/simpletest/tests/database_test.test |
Confirm that we can fetch a record to an array associative explicitly. |
DatabaseFetch2TestCase::testQueryFetchBoth |
function |
modules/simpletest/tests/database_test.test |
Confirm that we can fetch a record into a doubly-keyed array explicitly. |
DatabaseFetchTestCase::testQueryFetchObject |
function |
modules/simpletest/tests/database_test.test |
Confirm that we can fetch a record to an object explicitly. |
DatabaseFetchTestCase::testQueryFetchDefault |
function |
modules/simpletest/tests/database_test.test |
Confirm that we can fetch a record properly in default object mode. |
DatabaseStatementPrefetch::throwPDOException |
function |
includes/database/prefetch.inc |
Throw a PDO Exception based on the last PDO error. |
DatabaseStatementPrefetch::$defaultFetchStyle |
property |
includes/database/prefetch.inc |
Holds the default fetch style. |
ConnectionUnitTest::testOpenQueryPrefetchClose |
function |
modules/simpletest/tests/database_test.test |
Tests Database::closeConnection() with a query and custom prefetch method. |
DatabaseStatementPrefetch::$defaultFetchOptions |
property |
includes/database/prefetch.inc |
Holds supplementary default fetch options. |
UpdateCoreUnitTestCase::testUpdateBuildFetchUrl |
function |
modules/update/tests/update.test |
Tests that _update_build_fetch_url() builds the URL correctly. |
UpdateTestContribCase::testUpdateBrokenFetchURL |
function |
modules/update/tests/update.test |
Makes sure that if we fetch from a broken URL, sane things happen. |
DatabaseEmptyStatementTestCase::testEmptyFetchAll |
function |
modules/simpletest/tests/database_test.test |
Test that the empty result set mass-fetches in an expected way. |