php-src/ext/oci8/tests/statement_cache.phpt
Antony Dovgal e0ed2b45ff new tests
2005-09-06 19:33:18 +00:00

41 lines
756 B
PHP

--TEST--
statement cache
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--ENV--
return "
ORACLE_HOME=".(isset($_ENV['ORACLE_HOME']) ? $_ENV['ORACLE_HOME'] : '')."
NLS_LANG=".(isset($_ENV['NLS_LANG']) ? $_ENV['NLS_LANG'] : '')."
";
--FILE--
<?php
require dirname(__FILE__)."/connect.inc";
$pc = oci_pconnect($user, $password, $dbase);
$stmt = oci_parse($pc, "select 1+3 from dual", true);
oci_execute($stmt);
var_dump(oci_fetch_array($stmt));
$stmt = oci_parse($pc, "select 1+3 from dual", true);
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