php-src/ext/oci8/tests/uncommitted.phpt
Antony Dovgal 31c35e5cad add 4 new tests
remove ENV tag from the old ones
2005-12-06 19:28:25 +00:00

17 lines
290 B
PHP

--TEST--
uncommitted connection
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--FILE--
<?php
require dirname(__FILE__)."/connect.inc";
$stmt = oci_parse($c, "select 1 from dual");
oci_execute($stmt, OCI_DEFAULT);
echo "Done\n";
?>
--EXPECTF--
Done