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";
$c = new pq\Connection(PQ_DSN);
var_dump($c->reset());
var_dump($c->reset());
$c->reset();
var_dump($c->status);
$c->reset();
var_dump($c->status);
?>
DONE
--EXPECT--
Test
bool(true)
bool(true)
int(0)
int(0)
DONE