1
0
mirror of https://github.com/danog/ext-pq.git synced 2024-12-02 17:28:35 +01:00
ext-pq/tests/stm_desc001.phpt

23 lines
363 B
Plaintext
Raw Normal View History

2013-01-21 12:13:04 +01:00
--TEST--
pq\Statment::desc()
--SKIPIF--
<?php include "_skipif.inc"; ?>
--FILE--
<?php
echo "Test\n";
include "_setup.inc";
$c = new pq\Connection(PQ_DSN);
$s = $c->prepare("test1", "SELECT NOW() - \$1");
$r = $s->exec(array("2012-12-12 12:12:12"));
$d = $s->desc();
printf("%s\n", $c->types->byOid->{$d[0]}->typname);
?>
DONE
--EXPECT--
Test
timestamptz
DONE