You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
22
vendor/swoole/examples/postgresql/postgresql_coro.php
vendored
Executable file
22
vendor/swoole/examples/postgresql/postgresql_coro.php
vendored
Executable file
@ -0,0 +1,22 @@
|
||||
|
||||
<?php
|
||||
|
||||
go(function () {
|
||||
|
||||
$pg = new Swoole\Coroutine\PostgreSql();
|
||||
$conn = $pg -> connect ("host=127.0.0.1 port=5432 dbname=test user=wuzhenyu password=");
|
||||
$result = $pg->query($conn, 'SELECT * FROM test;');
|
||||
$arr = $pg->fetchAll($result);// the same with affectedRows(),fetchObject(),fetchAssoc(),fetchArray(),fetchRow(),numRows()
|
||||
var_dump($arr);
|
||||
|
||||
});
|
||||
|
||||
go(function () {
|
||||
|
||||
$pg = new Swoole\Coroutine\PostgreSql();
|
||||
$conn = $pg -> connect ("host=127.0.0.1 port=5432 dbname=test user=wuzhenyu password=");
|
||||
$metaData = $pg->metaData($conn, 'test');
|
||||
var_dump($metaData);
|
||||
|
||||
});
|
||||
?>
|
Reference in New Issue
Block a user