Skip to content
This repository was archived by the owner on Dec 10, 2021. It is now read-only.
/ ext-postgresql Public archive

Coroutine-based PostgreSQL client for Open Swoole

License

Notifications You must be signed in to change notification settings

openswoole/ext-postgresql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7d3c207 · Nov 24, 2021
Oct 17, 2021
Aug 10, 2021
Sep 27, 2021
Sep 13, 2020
Dec 14, 2020
Oct 15, 2021
Nov 24, 2021
Oct 15, 2021
Oct 15, 2021
Sep 21, 2020
Aug 3, 2020
Oct 15, 2021
Nov 7, 2021
Sep 21, 2020

Repository files navigation

Open Swoole Coroutine Postgres Client

Start from version v4.8.0, this library is included in openswoole extension.

ext-postgresql is the Open Swoole Postgres Client library can be used with in the coroutine context without blocking IO.

Pre-requirement

  • libpq is required
  • openswoole version >= 4.7.1

On MacOS, you have to install postgresql to build this extension: brew install postgresql.

Build & Installation

git clone git@github.com:openswoole/ext-postgresql.git
cd ./ext-postgresql
git checkout v4.7.2
phpize
./configure
make && make install

Enable openswoole_postgresql in php.ini by adding the following line:

extension=openswoole_postgresql.so

Check if the extension is installed

php --ri openswoole_postgresql

Use Docker to enable

docker-php-ext-enable --ini-name zzz-docker-php-ext-openswoole.ini openswoole

How to use the Postgres Client

<?php
Co\run(function () {
    $db = new Swoole\Coroutine\PostgreSQL();
    $db->connect("host=127.0.0.1 port=5432 dbname=test user=root password=password");
    $db->prepare('fortunes', 'SELECT id, message FROM Fortune');
    $res = $db->execute('fortunes', []);
    $arr = $db->fetchAll($res);
    var_dump($arr);

    $db->prepare('select_query', 'SELECT id, randomnumber FROM World WHERE id = $1');
    $res = $db->execute('select_query', [123]);
    $ret = $db->fetchAll($res);
    var_dump($ret);
});

You can find more examples in the /examples folder.

About

Coroutine-based PostgreSQL client for Open Swoole

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published