PATH:
home
/
centosnipponia
/
public_html
/
apptt-oldgit
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Driver
<?php namespace Doctrine\DBAL\Driver; use function func_get_args; use const PHP_VERSION_ID; if (PHP_VERSION_ID >= 80000) { /** * @internal */ trait PDOStatementImplementations { /** * @deprecated Use one of the fetch- or iterate-related methods. * * @param int $mode * @param mixed ...$args * * @return bool */ public function setFetchMode($mode, ...$args) { return $this->doSetFetchMode($mode, ...$args); } /** * @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchFirstColumn() instead. * * @param int|null $mode * @param mixed ...$args * * @return mixed[] */ public function fetchAll($mode = null, ...$args) { return $this->doFetchAll($mode, ...$args); } } } else { /** * @internal */ trait PDOStatementImplementations { /** * @deprecated Use one of the fetch- or iterate-related methods. * * @param int $fetchMode * @param mixed $arg2 * @param mixed $arg3 */ public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null): bool { return $this->doSetFetchMode(...func_get_args()); } /** * @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchFirstColumn() instead. * * @param int|null $fetchMode * @param mixed $fetchArgument * @param mixed $ctorArgs * * @return mixed[] */ public function fetchAll($fetchMode = null, $fetchArgument = null, $ctorArgs = null) { return $this->doFetchAll(...func_get_args()); } } }
[+]
..
[-] AbstractDB2Driver.php
[edit]
[-] AbstractDriverException.php
[edit]
[-] AbstractException.php
[edit]
[-] AbstractMySQLDriver.php
[edit]
[-] AbstractOracleDriver.php
[edit]
[+]
AbstractOracleDriver
[-] AbstractPostgreSQLDriver.php
[edit]
[-] AbstractSQLAnywhereDriver.php
[edit]
[-] AbstractSQLServerDriver.php
[edit]
[+]
AbstractSQLServerDriver
[-] AbstractSQLiteDriver.php
[edit]
[-] Connection.php
[edit]
[-] DriverException.php
[edit]
[+]
DrizzlePDOMySql
[-] Exception.php
[edit]
[-] ExceptionConverterDriver.php
[edit]
[-] FetchUtils.php
[edit]
[+]
IBMDB2
[+]
Mysqli
[+]
OCI8
[+]
PDO
[-] PDOConnection.php
[edit]
[-] PDOException.php
[edit]
[+]
PDOIbm
[+]
PDOMySql
[+]
PDOOracle
[+]
PDOPgSql
[-] PDOQueryImplementation.php
[edit]
[+]
PDOSqlite
[+]
PDOSqlsrv
[-] PDOStatement.php
[edit]
[-] PDOStatementImplementations.php
[edit]
[-] PingableConnection.php
[edit]
[-] Result.php
[edit]
[-] ResultStatement.php
[edit]
[+]
SQLAnywhere
[+]
SQLSrv
[-] ServerInfoAwareConnection.php
[edit]
[-] Statement.php
[edit]
[-] StatementIterator.php
[edit]
[-] .htaccess.disabled
[edit]