1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-11-30 04:19:49 +01:00
ext-pq/tests/async004.phpt
2014-10-16 16:50:13 +02:00

49 lines
764 B
PHP

--TEST--
async exec params
--SKIPIF--
<?php include "_skipif.inc"; ?>
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
$c = new pq\Connection(PQ_DSN);
$t = new pq\Types($c);
$c->execParamsAsync("SELECT \$1,\$2::int4", array(1,2), array($t["int4"]->oid), function ($res) {
var_dump($res);
});
do {
while ($c->busy) {
$r = array($c->socket);
$w = $e = null;
if (stream_select($r, $w, $e, null)) {
$c->poll();
}
}
} while ($c->getResult());
?>
DONE
--EXPECTF--
Test
object(pq\Result)#%d (8) {
["status"]=>
int(2)
["statusMessage"]=>
string(9) "TUPLES_OK"
["errorMessage"]=>
string(0) ""
["numRows"]=>
int(1)
["numCols"]=>
int(2)
["affectedRows"]=>
int(%d)
["fetchType"]=>
int(0)
["autoConvert"]=>
int(65535)
}
DONE