uncommitted.phpt 214 B

12345678910111213141516
  1. --TEST--
  2. uncommitted connection
  3. --EXTENSIONS--
  4. oci8
  5. --FILE--
  6. <?php
  7. require __DIR__."/connect.inc";
  8. $stmt = oci_parse($c, "select 1 from dual");
  9. oci_execute($stmt, OCI_DEFAULT);
  10. echo "Done\n";
  11. ?>
  12. --EXPECT--
  13. Done