/home/techb158/immovalet.com/vendor/doctrine/dbal/src/Driver
NameSizeModeActions
AbstractOracleDriver/-0755rm
AbstractSQLServerDriver/-0755rm
API/-0755rm
Exception/-0755rm
IBMDB2/-0755rm
Mysqli/-0755rm
OCI8/-0755rm
PDO/-0755rm
SQLSrv/-0755rm
AbstractDB2Driver.php9570644editdlrm
AbstractException.php10920644editdlrm
AbstractMySQLDriver.php40950644editdlrm
AbstractOracleDriver.php13510644editdlrm
AbstractPostgreSQLDriver.php19390644editdlrm
AbstractSQLiteDriver.php9330644editdlrm
AbstractSQLServerDriver.php10080644editdlrm
Connection.php17300644editdlrm
Exception.php4080644editdlrm
FetchUtils.php13010644editdlrm
Middleware.php1680644editdlrm
Result.php24970644editdlrm
ServerInfoAwareConnection.php3970644editdlrm
Statement.php39290644editdlrm
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Driver/Result.php (2497B)
|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 list> * * @throws Exception */ public function fetchAllNumeric(): array; /** * Returns an array containing all of the result rows represented as associative arrays. * * @return list> * * @throws Exception */ public function fetchAllAssociative(): array; /** * Returns an array containing the values of the first column of the result. * * @return list * * @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 The number of rows. * * @throws Exception */ public function rowCount(): int; /** * 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. * * @throws Exception */ public function columnCount(): int; /** * Discards the non-fetched portion of the result, enabling the originating statement to be executed again. */ public function free(): void; }