mirror of
https://github.com/danog/ext-pq.git
synced 2024-12-02 09:18:02 +01:00
drop test table twice; once with notice
This commit is contained in:
parent
db92ec6995
commit
d66c976b04
@ -9,11 +9,13 @@ echo "Test\n";
|
|||||||
include "_setup.inc";
|
include "_setup.inc";
|
||||||
|
|
||||||
$c = new pq\Connection(PQ_DSN);
|
$c = new pq\Connection(PQ_DSN);
|
||||||
|
$c->exec("DROP TABLE IF EXISTS test");
|
||||||
new pq\Event($c, pq\Event::NOTICE, function($c, $notice) {
|
new pq\Event($c, pq\Event::NOTICE, function($c, $notice) {
|
||||||
echo "Got notice: $notice\n";
|
echo "Got notice: $notice\n";
|
||||||
});
|
});
|
||||||
$t = new pq\Transaction($c);
|
$t = new pq\Transaction($c);
|
||||||
$c->exec("DROP TABLE IF EXISTS test; CREATE TABLE test (id serial, data text)");
|
$c->exec("DROP TABLE IF EXISTS test");
|
||||||
|
$c->exec("CREATE TABLE test (id serial, data text)");
|
||||||
$s = $c->prepare("test_insert", "INSERT INTO test (data) VALUES (\$1)", array((new pq\Types($c))["text"]->oid));
|
$s = $c->prepare("test_insert", "INSERT INTO test (data) VALUES (\$1)", array((new pq\Types($c))["text"]->oid));
|
||||||
$s->exec(array("a"));
|
$s->exec(array("a"));
|
||||||
$s->exec(array("b"));
|
$s->exec(array("b"));
|
||||||
|
Loading…
Reference in New Issue
Block a user