mirror of
https://github.com/danog/postgres.git
synced 2024-11-27 04:24:45 +01:00
43 lines
899 B
PHP
43 lines
899 B
PHP
<?php
|
|
|
|
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);
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function count(): int {
|
|
return $this->affectedRows();
|
|
}
|
|
} |