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

58 lines
911 B
Plaintext
Raw Normal View History

2013-01-22 18:11:32 +01:00
--TEST--
async prepared statement
--SKIPIF--
<?php include "_skipif.inc"; ?>
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
function complete($s) {
do {
while ($s->connection->busy) {
$r = array($s->connection->socket);
$w = $e = null;
if (stream_select($r, $w, $e, null)) {
$s->connection->poll();
}
}
} while ($s->connection->getResult());
}
$c = new pq\Connection(PQ_DSN);
$t = new pq\Types($c);
$s = $c->prepareAsync("test", "SELECT \$1,\$2::int4", array($t["int4"]->oid));
2013-01-22 18:11:32 +01:00
complete($s);
$s->execAsync(array(1,2), function ($res) {
var_dump($res);
});
complete($s);
?>
DONE
--EXPECTF--
Test
2014-09-12 16:52:39 +02:00
object(pq\Result)#%d (8) {
2013-01-22 18:11:32 +01:00
["status"]=>
int(2)
["statusMessage"]=>
string(9) "TUPLES_OK"
2013-01-22 18:11:32 +01:00
["errorMessage"]=>
string(0) ""
["numRows"]=>
int(1)
["numCols"]=>
int(2)
["affectedRows"]=>
int(%d)
2013-01-22 18:11:32 +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 18:11:32 +01:00
}
DONE