1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/ext/oci8/tests/uncommitted.phpt
T
2019-03-15 22:55:30 +01:00

17 lines
276 B
PHP

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