/home/techb158/dev.balacoffee.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver
NameSizeModeActions
AbstractOracleDriver/-0755rm
AbstractSQLServerDriver/-0755rm
DrizzlePDOMySql/-0755rm
IBMDB2/-0755rm
Mysqli/-0755rm
OCI8/-0755rm
PDO/-0755rm
PDOIbm/-0755rm
PDOMySql/-0755rm
PDOOracle/-0755rm
PDOPgSql/-0755rm
PDOSqlite/-0755rm
PDOSqlsrv/-0755rm
SQLAnywhere/-0755rm
SQLSrv/-0755rm
AbstractDB2Driver.php11890644editdlrm
AbstractDriverException.php1460644editdlrm
AbstractException.php16310644editdlrm
AbstractMySQLDriver.php77730644editdlrm
AbstractOracleDriver.php33000644editdlrm
AbstractPostgreSQLDriver.php58360644editdlrm
AbstractSQLAnywhereDriver.php52620644editdlrm
AbstractSQLiteDriver.php38570644editdlrm
AbstractSQLServerDriver.php30510644editdlrm
Connection.php22690644editdlrm
DriverException.php1640644editdlrm
Exception.php7560644editdlrm
ExceptionConverterDriver.php9500644editdlrm
FetchUtils.php13210644editdlrm
PDOConnection.php37240644editdlrm
PDOException.php15080644editdlrm
PDOQueryImplementation.php7860644editdlrm
PDOStatement.php79790644editdlrm
PDOStatementImplementations.php19370644editdlrm
PingableConnection.php3890644editdlrm
Result.php24620644editdlrm
ResultStatement.php56950644editdlrm
ServerInfoAwareConnection.php6380644editdlrm
Statement.php53780644editdlrm
StatementIterator.php6160644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Result.php (2462B)
|false * * @throws Exception */ public function fetchNumeric(); /** * Returns the next row of the result as an associative array or FALSE if there are no more rows. * * @return array|false * * @throws Exception */ public function fetchAssociative(); /** * Returns the first value of the next row of the result or FALSE if there are no more rows. * * @return mixed|false * * @throws Exception */ public function fetchOne(); /** * Returns an array containing all of the result rows represented as numeric arrays. * * @return array> * * @throws Exception */ public function fetchAllNumeric(): array; /** * Returns an array containing all of the result rows represented as associative arrays. * * @return array> * * @throws Exception */ public function fetchAllAssociative(): array; /** * Returns an array containing the values of the first column of the result. * * @return array * * @throws Exception */ public function fetchFirstColumn(): array; /** * Returns the number of rows affected by the DELETE, INSERT, or UPDATE statement that produced the result. * * If the statement executed a SELECT query or a similar platform-specific SQL (e.g. DESCRIBE, SHOW, etc.), * some database drivers may return the number of rows returned by that query. However, this behaviour * is not guaranteed for all drivers and should not be relied on in portable applications. * * @return int|string The number of rows. */ public function rowCount(); /** * Returns the number of columns in the result * * @return int The number of columns in the result. If the columns cannot be counted, * this method must return 0. */ public function columnCount(); /** * Discards the non-fetched portion of the result, enabling the originating statement to be executed again. */ public function free(): void; }