summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/bind_long.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/bind_long.phpt')
-rw-r--r--ext/oci8/tests/bind_long.phpt5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/oci8/tests/bind_long.phpt b/ext/oci8/tests/bind_long.phpt
index 065a5f143..ba6bd4d04 100644
--- a/ext/oci8/tests/bind_long.phpt
+++ b/ext/oci8/tests/bind_long.phpt
@@ -5,7 +5,10 @@ bind LONG field
--FILE--
<?php
-require dirname(__FILE__)."/connect.inc";
+require(dirname(__FILE__)."/connect.inc");
+
+$stmt = oci_parse($c, "drop table phptestlng");
+@oci_execute($stmt);
$stmt = oci_parse($c, "create table phptestlng( id number(10), filetxt long)");
oci_execute($stmt);