1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-11-26 11:54:50 +01:00
ext-pq/tests/gh-issue015_statements.phpt
2016-05-17 16:25:18 +02:00

42 lines
659 B
PHP

--TEST--
restore statements on reset
--SKIPIF--
<?php
include "_skipif.inc";
?>
--INI--
date.timezone=UTC
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
$c = new pq\Connection(PQ_DSN);
$s = $c->prepare("test", "SELECT 1");
$c->on(pq\Connection::EVENT_RESET, function($conn) {
printf("Connection was reset\n");
});
var_dump($s->exec()->fetchRow());
$c->reset();
// Fatal error: Uncaught exception 'pq\Exception\DomainException' with message 'ERROR: prepared statement "test" does not exist'
var_dump($s->exec()->fetchRow());
?>
===DONE===
--EXPECT--
Test
array(1) {
[0]=>
int(1)
}
Connection was reset
array(1) {
[0]=>
int(1)
}
===DONE===