mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
25 lines
526 B
PHP
25 lines
526 B
PHP
<?php
|
|
|
|
namespace Amp\Postgres;
|
|
|
|
use pq;
|
|
|
|
class PqCommandResult implements CommandResult {
|
|
/** @var \pq\Result PostgreSQL result object. */
|
|
private $result;
|
|
|
|
/**
|
|
* @param \pq\Result $result PostgreSQL result object.
|
|
*/
|
|
public function __construct(pq\Result $result) {
|
|
$this->result = $result;
|
|
}
|
|
|
|
/**
|
|
* @return int Number of rows affected by the INSERT, UPDATE, or DELETE query.
|
|
*/
|
|
public function affectedRows(): int {
|
|
return $this->result->affectedRows;
|
|
}
|
|
}
|