diff options
Diffstat (limited to 'tests/uncommitted.phpt')
-rw-r--r-- | tests/uncommitted.phpt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/uncommitted.phpt b/tests/uncommitted.phpt new file mode 100644 index 0000000000..3c341c8cb4 --- /dev/null +++ b/tests/uncommitted.phpt @@ -0,0 +1,16 @@ +--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 |