diff options
Diffstat (limited to 'ext/oci8/tests')
-rw-r--r-- | ext/oci8/tests/statement_cache.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/tests/statement_cache.phpt b/ext/oci8/tests/statement_cache.phpt index e7c8911e88..19e69d4c21 100644 --- a/ext/oci8/tests/statement_cache.phpt +++ b/ext/oci8/tests/statement_cache.phpt @@ -9,11 +9,11 @@ require dirname(__FILE__)."/connect.inc"; $pc = oci_pconnect($user, $password, $dbase); -$stmt = oci_parse($pc, "select 1+3 from dual", true); +$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", true); +$stmt = oci_parse($pc, "select 1+3 from dual"); oci_execute($stmt); var_dump(oci_fetch_array($stmt)); |