1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-15 19:07:26 +01:00
postgres/lib/PgSqlCommandResult.php

37 lines
785 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;
class PgSqlCommandResult implements CommandResult {
/** @var resource PostgreSQL result resource. */
private $handle;
/**
* @param resource $handle PostgreSQL result resource.
*/
public function __construct($handle) {
$this->handle = $handle;
}
/**
* Frees the result resource.
*/
public function __destruct() {
\pg_free_result($this->handle);
}
/**
* @return int Number of rows affected by the INSERT, UPDATE, or DELETE query.
*/
public function affectedRows(): int {
return \pg_affected_rows($this->handle);
}
/**
* @return string
*/
public function lastOid(): string {
return (string) \pg_last_oid($this->handle);
}
}