/
home
/
techb158
/
dev.balacoffee.com
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Driver
/
/home/techb158/dev.balacoffee.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver
mkdir
upload
Name
Size
Mode
Actions
AbstractOracleDriver/
-
0755
rm
AbstractSQLServerDriver/
-
0755
rm
DrizzlePDOMySql/
-
0755
rm
IBMDB2/
-
0755
rm
Mysqli/
-
0755
rm
OCI8/
-
0755
rm
PDO/
-
0755
rm
PDOIbm/
-
0755
rm
PDOMySql/
-
0755
rm
PDOOracle/
-
0755
rm
PDOPgSql/
-
0755
rm
PDOSqlite/
-
0755
rm
PDOSqlsrv/
-
0755
rm
SQLAnywhere/
-
0755
rm
SQLSrv/
-
0755
rm
AbstractDB2Driver.php
1189
0644
edit
dl
rm
AbstractDriverException.php
146
0644
edit
dl
rm
AbstractException.php
1631
0644
edit
dl
rm
AbstractMySQLDriver.php
7773
0644
edit
dl
rm
AbstractOracleDriver.php
3300
0644
edit
dl
rm
AbstractPostgreSQLDriver.php
5836
0644
edit
dl
rm
AbstractSQLAnywhereDriver.php
5262
0644
edit
dl
rm
AbstractSQLiteDriver.php
3857
0644
edit
dl
rm
AbstractSQLServerDriver.php
3051
0644
edit
dl
rm
Connection.php
2269
0644
edit
dl
rm
DriverException.php
164
0644
edit
dl
rm
Exception.php
756
0644
edit
dl
rm
ExceptionConverterDriver.php
950
0644
edit
dl
rm
FetchUtils.php
1321
0644
edit
dl
rm
PDOConnection.php
3724
0644
edit
dl
rm
PDOException.php
1508
0644
edit
dl
rm
PDOQueryImplementation.php
786
0644
edit
dl
rm
PDOStatement.php
7979
0644
edit
dl
rm
PDOStatementImplementations.php
1937
0644
edit
dl
rm
PingableConnection.php
389
0644
edit
dl
rm
Result.php
2462
0644
edit
dl
rm
ResultStatement.php
5695
0644
edit
dl
rm
ServerInfoAwareConnection.php
638
0644
edit
dl
rm
Statement.php
5378
0644
edit
dl
rm
StatementIterator.php
616
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Result.php
(2462B)
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver; /** * Driver-level result statement execution result. */ interface Result { /** * Returns the next row of the result as a numeric array or FALSE if there are no more rows. * * @return array<int,mixed>|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<string,mixed>|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<int,array<int,mixed>> * * @throws Exception */ public function fetchAllNumeric(): array; /** * Returns an array containing all of the result rows represented as associative arrays. * * @return array<int,array<string,mixed>> * * @throws Exception */ public function fetchAllAssociative(): array; /** * Returns an array containing the values of the first column of the result. * * @return array<int,mixed> * * @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; }
Save
cmd:
run