1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-02 09:18:02 +01:00
ext-pq/tests/basic002.phpt
Michael Wallner f7aeb22e11 tests
2013-01-21 12:13:04 +01:00

23 lines
366 B
PHP

--TEST--
basic functionality
--SKIPIF--
<?php include "_skipif.inc"; ?>
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
$c = new pq\Connection(PQ_DSN);
$s = $c->prepare("test1", "SELECT \$1",array($c->types->byName->text->oid));
$r = $s->exec(array("fooo"));
printf("%s\n", $r->errorMessage);
printf("%s\n", $r->fetchCol());
?>
DONE
--EXPECT--
Test
fooo
DONE