summaryrefslogtreecommitdiff
path: root/ext/oci8/tests
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-08-22 11:09:12 +0000
committerAntony Dovgal <tony2001@php.net>2006-08-22 11:09:12 +0000
commit08a9ab02ba56fbf43062073a3749407645698b51 (patch)
tree6e31d949765451bbbea08186782983971193d6ed /ext/oci8/tests
parent7dfbf5b2e4dc4030dbbe137e7d4b52f15e43e5bd (diff)
downloadphp-git-08a9ab02ba56fbf43062073a3749407645698b51.tar.gz
minor improvements
Diffstat (limited to 'ext/oci8/tests')
-rw-r--r--ext/oci8/tests/statement_cache.phpt4
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));