php-src/ext/oci8/tests/statement_cache.phpt
2006-08-22 11:09:12 +00:00

36 lines
585 B
PHP

--TEST--
statement cache
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--
<?php
require dirname(__FILE__)."/connect.inc";
$pc = oci_pconnect($user, $password, $dbase);
$stmt = oci_parse($pc, "select 1+3 from dual");
oci_execute($stmt);
var_dump(oci_fetch_array($stmt));
$stmt = oci_parse($pc, "select 1+3 from dual");
oci_execute($stmt);
var_dump(oci_fetch_array($stmt));
echo "Done\n";
?>
--EXPECTF--
array(2) {
[0]=>
string(1) "4"
["1+3"]=>
string(1) "4"
}
array(2) {
[0]=>
string(1) "4"
["1+3"]=>
string(1) "4"
}
Done