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

20 lines
411 B
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
2017-11-18 06:55:16 +01:00
interface Statement extends Operation {
2016-09-14 16:27:39 +02:00
/**
* @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
*/
public function execute(array $params = []): Promise;
2017-11-06 01:18:01 +01:00
/**
* @return string The SQL string used to prepare the statement.
*/
public function getQuery(): string;
2016-09-14 16:27:39 +02:00
}