1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
Go to file
2017-02-16 16:23:50 -06:00
example Update examples 2017-01-18 12:52:40 -06:00
lib Alias destruct method 2017-02-16 16:23:50 -06:00
test Fix connect() methods 2017-02-15 17:36:10 -06:00
.gitattributes Initial commit 2016-09-14 09:27:39 -05:00
.gitignore Initial commit 2016-09-14 09:27:39 -05:00
.travis.yml Remove 7.1 from allowed failures 2017-01-18 11:11:50 -06:00
composer.json Update for removal of Amp loop wrapper functions 2016-12-29 23:21:48 -06:00
LICENSE Initial commit 2016-09-14 09:27:39 -05:00
phpdoc.dist.xml Initial commit 2016-09-14 09:27:39 -05:00
phpunit.xml.dist Fix whitelist 2016-09-14 23:40:12 -05:00
README.md Initial commit 2016-09-14 09:27:39 -05:00

PostgreSQL Client for Amp

This library is a component for Amp that provides an asynchronous client for PostgreSQL.

Build Status Coverage Status Semantic Version MIT License @amphp on Twitter

Requirements
  • PHP 7
Installation

The recommended way to install is with the Composer package manager. (See the Composer installation guide for information on installing and using Composer.)

Run the following command to use this library in your project:

composer require amphp/postgres

You can also manually edit composer.json to add this library as a project requirement.

// composer.json
{
    "require": {
        "amphp/postgres": "^0.1"
    }
}

Example

#!/usr/bin/env php
<?php

require __DIR__ . '/vendor/autoload.php';

use Amp\Postgres;

Amp\execute(function () {
    /** @var \Amp\Postgres\Connection $connection */
    $connection = yield Postgres\connect('host=localhost user=postgres dbname=test');

    /** @var \Amp\Postgres\Statement $statement */
    $statement = yield $connection->prepare('SELECT * FROM test WHERE id=$1');

    /** @var \Amp\Postgres\TupleResult $result */
    $result = yield $statement->execute(1337);

    while (yield $result->next()) {
        $row = $result->getCurrent();
        // $row is an array (map) of column values. e.g.: $row['column_name']
    }
});