1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-02 09:18:02 +01:00
This commit is contained in:
Michael Wallner 2013-02-12 21:40:31 +01:00
parent 884a0a5b72
commit 3e70f1ceb6

View File

@ -9,13 +9,15 @@ echo "Test\n";
include "_setup.inc"; include "_setup.inc";
$c = new pq\Connection(PQ_DSN); $c = new pq\Connection(PQ_DSN);
var_dump($c->reset()); $c->reset();
var_dump($c->reset()); var_dump($c->status);
$c->reset();
var_dump($c->status);
?> ?>
DONE DONE
--EXPECT-- --EXPECT--
Test Test
bool(true) int(0)
bool(true) int(0)
DONE DONE