1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/Executor.php
Aaron Piotrowski 0c3b70633c
Reuse statement handles
Allows the same query to be prepared multiple times on a single connection without error or performance penalty.
2017-07-27 23:20:46 -05:00

53 lines
1.8 KiB
PHP

<?php
namespace Amp\Postgres;
use Amp\Promise;
interface Executor {
const STATEMENT_NAME_PREFIX = "amp_";
/**
* @param string $sql
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult|\Amp\Postgres\TupleResult>
*
* @throws \Amp\Postgres\FailureException
*/
public function query(string $sql): Promise;
/**
* @param string $sql
* @param mixed ...$params
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult|\Amp\Postgres\TupleResult>
*
* @throws \Amp\Postgres\FailureException If the operation fails due to unexpected condition.
* @throws \Amp\Postgres\QueryError If the operation fails due to an error in the query (such as a syntax error).
* @throws \Amp\Postgres\PendingOperationError If another operation is currently pending on the connection.
*/
public function execute(string $sql, ...$params): Promise;
/**
* @param string $sql
*
* @return \Amp\Promise<\Amp\Postgres\Statement>
*
* @throws \Amp\Postgres\FailureException If the operation fails due to unexpected condition.
* @throws \Amp\Postgres\QueryError If the operation fails due to an error in the query (such as a syntax error).
* @throws \Amp\Postgres\PendingOperationError If another operation is currently pending on the connection.
*/
public function prepare(string $sql): Promise;
/**
* @param string $channel Channel name.
* @param string $payload Notification payload.
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult>
*
* @throws \Amp\Postgres\FailureException If the operation fails due to unexpected condition.
* @throws \Amp\Postgres\PendingOperationError If another operation is currently pending on the connection.
*/
public function notify(string $channel, string $payload = ""): Promise;
}