X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Fasync003.phpt;fp=tests%2Fasync003.phpt;h=bb242fe41849fad0c8e6217d1c8c159231655649;hp=0000000000000000000000000000000000000000;hb=30e86e66accfdb8e2b38aa76e05fb017f177d560;hpb=048bb6989b2d362dca16c3a2665e71454c43386e diff --git a/tests/async003.phpt b/tests/async003.phpt new file mode 100644 index 0000000..bb242fe --- /dev/null +++ b/tests/async003.phpt @@ -0,0 +1,57 @@ +--TEST-- +async query +--SKIPIF-- + +--FILE-- +execAsync("SELECT 1+2+3; SELECT 2,3,4", 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 (6) { + ["status"]=> + int(2) + ["errorMessage"]=> + string(0) "" + ["numRows"]=> + int(1) + ["numCols"]=> + int(1) + ["affectedRows"]=> + int(1) + ["fetchType"]=> + int(0) +} +object(pq\Result)#%d (6) { + ["status"]=> + int(2) + ["errorMessage"]=> + string(0) "" + ["numRows"]=> + int(1) + ["numCols"]=> + int(3) + ["affectedRows"]=> + int(1) + ["fetchType"]=> + int(0) +} +DONE \ No newline at end of file