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
Connection.php
16 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL\Driver; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Doctrine\DBAL\ParameterType; |
| 5 | interface Connection |
| 6 | { |
| 7 | public function prepare(string $sql) : Statement; |
| 8 | public function query(string $sql) : Result; |
| 9 | public function quote($value, $type = ParameterType::STRING); |
| 10 | public function exec(string $sql) : int; |
| 11 | public function lastInsertId($name = null); |
| 12 | public function beginTransaction(); |
| 13 | public function commit(); |
| 14 | public function rollBack(); |
| 15 | } |
| 16 |