1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-15 10:57:22 +01:00
postgres/lib/Executor.php

55 lines
2.0 KiB
PHP
Raw Normal View History

2016-12-30 06:21:17 +01:00
<?php
2016-09-14 16:27:39 +02:00
namespace Amp\Postgres;
use Amp\Promise;
2016-09-14 16:27:39 +02:00
interface Executor {
const STATEMENT_NAME_PREFIX = "amp_";
2016-09-14 16:27:39 +02:00
/**
* @param string $sql
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult|\Amp\Postgres\TupleResult>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\FailureException If the operation fails due to unexpected condition.
* @throws \Amp\Postgres\ConnectionException If the connection to the database is lost.
* @throws \Amp\Postgres\QueryError If the operation fails due to an error in the query (such as a syntax error).
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function query(string $sql): Promise;
2016-09-14 16:27:39 +02:00
/**
* @param string $sql
* @param mixed[] $params
2016-09-14 16:27:39 +02:00
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult|\Amp\Postgres\TupleResult>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\FailureException If the operation fails due to unexpected condition.
* @throws \Amp\Postgres\ConnectionException If the connection to the database is lost.
* @throws \Amp\Postgres\QueryError If the operation fails due to an error in the query (such as a syntax error).
2016-09-14 16:27:39 +02:00
*/
public function execute(string $sql, array $params = []): Promise;
2016-09-14 16:27:39 +02:00
/**
* @param string $sql
*
* @return \Amp\Promise<\Amp\Postgres\Statement>
2016-09-14 16:27:39 +02:00
*
* @throws \Amp\Postgres\FailureException If the operation fails due to unexpected condition.
* @throws \Amp\Postgres\ConnectionException If the connection to the database is lost.
* @throws \Amp\Postgres\QueryError If the operation fails due to an error in the query (such as a syntax error).
2016-09-14 16:27:39 +02:00
*/
2016-11-15 18:06:21 +01:00
public function prepare(string $sql): Promise;
2017-05-16 06:28:37 +02:00
/**
* @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\ConnectionException If the connection to the database is lost.
*/
2016-11-15 18:06:21 +01:00
public function notify(string $channel, string $payload = ""): Promise;
2016-09-14 16:27:39 +02:00
}