API
9 months ago
Exception
2 years ago
Middleware
2 years ago
AbstractException.php
2 years ago
AbstractMySQLDriver.php
9 months ago
Connection.php
2 years ago
Exception.php
2 years ago
FetchUtils.php
2 years ago
Middleware.php
2 years ago
Result.php
2 years ago
ServerInfoAwareConnection.php
2 years ago
Statement.php
2 years ago
index.php
2 years ago
Result.php
17 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\DBAL\Driver; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | interface Result |
| 6 | { |
| 7 | public function fetchNumeric(); |
| 8 | public function fetchAssociative(); |
| 9 | public function fetchOne(); |
| 10 | public function fetchAllNumeric() : array; |
| 11 | public function fetchAllAssociative() : array; |
| 12 | public function fetchFirstColumn() : array; |
| 13 | public function rowCount() : int; |
| 14 | public function columnCount() : int; |
| 15 | public function free() : void; |
| 16 | } |
| 17 |