]> granicus.if.org Git - php/commitdiff
MFH: Silence initialization warning
authorChristopher Jones <sixd@php.net>
Mon, 9 Mar 2009 17:48:54 +0000 (17:48 +0000)
committerChristopher Jones <sixd@php.net>
Mon, 9 Mar 2009 17:48:54 +0000 (17:48 +0000)
ext/oci8/tests/bug27303_3.phpt

index dd8b62083b419a056c4fbff8fbd0061e690e4ab6..f290010f1541225d94b2d88744158bc26c44a080 100644 (file)
@@ -15,7 +15,7 @@ $create_st[] = "create table mytab (mydata varchar2(20), seqcol number)";
 
 foreach ($create_st as $statement) {
        $stmt = oci_parse($c, $statement);
-       oci_execute($stmt);
+       @oci_execute($stmt);
 }
 
 define('MYLIMIT', 200);