mirror of
https://github.com/danog/postgres.git
synced 2024-12-02 17:37:57 +01:00
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require \dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
use Amp\Postgres;
|
|
|
|
Amp\Loop::run(function () {
|
|
$host = 'localhost';
|
|
$port = Postgres\ConnectionConfig::DEFAULT_PORT;
|
|
$user = 'postgres';
|
|
|
|
$pool = Postgres\pool(new Postgres\ConnectionConfig($host, $port, $user));
|
|
|
|
yield $pool->query('DROP TABLE IF EXISTS test');
|
|
|
|
/** @var \Amp\Postgres\Transaction $transaction */
|
|
$transaction = yield $pool->beginTransaction();
|
|
|
|
yield $transaction->query('CREATE TABLE test (domain VARCHAR(63), tld VARCHAR(63), PRIMARY KEY (domain, tld))');
|
|
|
|
/** @var \Amp\Sql\Statement $statement */
|
|
$statement = yield $transaction->prepare('INSERT INTO test VALUES (?, ?)');
|
|
|
|
yield $statement->execute(['amphp', 'org']);
|
|
yield $statement->execute(['google', 'com']);
|
|
yield $statement->execute(['github', 'com']);
|
|
|
|
/** @var \Amp\Postgres\ResultSet $result */
|
|
$result = yield $transaction->execute('SELECT * FROM test WHERE tld = :tld', ['tld' => 'com']);
|
|
|
|
$format = "%-20s | %-10s\n";
|
|
\printf($format, 'TLD', 'Domain');
|
|
while (yield $result->advance()) {
|
|
$row = $result->getCurrent();
|
|
\printf($format, $row['domain'], $row['tld']);
|
|
}
|
|
|
|
yield $transaction->rollback();
|
|
});
|