summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/uncommitted.phpt
blob: c8e8a8d5813165dafd1548412eee38c2c153f280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--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