X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=e6d53ee703593da20002af807b40f2ccd22aaaed;hp=50b24ce3e3a20b606f3e93e439da6ac103599f4a;hb=ac08c194e71fee0f68559c1ec43f323ecc334019;hpb=7028ab969c1803f807f99094d7dcd88fa3da8aac diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 50b24ce..e6d53ee 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -10,11 +10,11 @@ include "_setup.inc"; $c = new pq\Connection(PQ_DSN); new pq\Event($c, pq\Event::NOTICE, function($c, $notice) { - echo "Got notice: $notice"; + echo "Got notice: $notice\n"; }); $t = new pq\Transaction($c); $c->exec("DROP TABLE IF EXISTS test; CREATE TABLE test (id serial, data text)"); -$s = $c->prepare("test_insert", "INSERT INTO test (data) VALUES (\$1)", array($c->types->byName->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("b")); $s->exec(array("c"));