1
0
mirror of https://github.com/danog/postgres.git synced 2025-01-21 21:01:10 +01:00
postgres/lib/PqStatement.php
Aaron Piotrowski caf829a48c Initial commit
2016-09-14 09:27:39 -05:00

46 lines
1.1 KiB
PHP

<?php declare(strict_types = 1);
namespace Amp\Postgres;
use Amp\{ Coroutine, function rethrow };
use Interop\Async\Awaitable;
use pq;
class PqStatement implements Statement {
/** @var \pq\Statement */
private $statement;
/** @var callable */
private $execute;
/**
* @param \pq\Statement $statement
* @param callable $execute
*/
public function __construct(pq\Statement $statement, callable $execute) {
$this->statement = $statement;
$this->execute = $execute;
}
public function __destruct() {
rethrow(new Coroutine(($this->execute)([$this->statement, "deallocateAsync"])));
}
/**
* @return string
*/
public function getQuery(): string {
return $this->statement->query;
}
/**
* @param mixed ...$params
*
* @return \Interop\Async\Awaitable<\Amp\Postgres\Result>
*
* @throws \Amp\Postgres\FailureException If executing the statement fails.
*/
public function execute(...$params): Awaitable {
return new Coroutine(($this->execute)([$this->statement, "execAsync"], $params));
}
}