4 <?php include "_skipif.inc"; ?>
11 $c = new pq\Connection(PQ_DSN);
12 $c->execAsync("select 1; select 2", function($r) {
13 print_r($r->fetchAll());
16 $c->execAsync("select 3; select 4", function($r) {
19 } catch (Exception $e) {
20 printf("%s\n", $e->getMessage());
27 Failed to execute query (another command is already in progress)