1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-02 09:18:02 +01:00
ext-pq/tests/async004.phpt

49 lines
764 B
Plaintext
Raw Normal View History

2013-01-22 16:28:11 +01:00
--TEST--
2013-01-22 18:11:32 +01:00
async exec params
2013-01-22 16:28:11 +01:00
--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) {
2013-01-22 16:28:11 +01:00
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
2014-09-12 16:52:39 +02:00
object(pq\Result)#%d (8) {
2013-01-22 16:28:11 +01:00
["status"]=>
int(2)
["statusMessage"]=>
string(9) "TUPLES_OK"
2013-01-22 16:28:11 +01:00
["errorMessage"]=>
string(0) ""
["numRows"]=>
int(1)
["numCols"]=>
int(2)
["affectedRows"]=>
int(%d)
2013-01-22 16:28:11 +01:00
["fetchType"]=>
int(0)
2014-09-12 16:52:39 +02:00
["autoConvert"]=>
2014-09-17 14:13:53 +02:00
int(65535)
2013-01-22 16:28:11 +01:00
}
DONE