1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/examples/basic.php
Aaron Piotrowski dad285f9ef Update examples
2017-05-26 14:41:02 -05:00

20 lines
533 B
PHP

#!/usr/bin/env php
<?php
require dirname(__DIR__) . '/vendor/autoload.php';
use Amp\Postgres;
Amp\Loop::run(function () {
/** @var \Amp\Postgres\Connection $connection */
$connection = yield Postgres\connect('host=localhost user=postgres');
/** @var \Amp\Postgres\TupleResult $result */
$result = yield $connection->query('SHOW ALL');
while (yield $result->advance()) {
$row = $result->getCurrent();
\printf("%-35s = %s (%s)\n", $row['name'], $row['setting'], $row['description']);
}
});