1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
Files
archived-php-src/ext/oci8/tests/uncommitted.phpt
T
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

17 lines
214 B
PHP

--TEST--
uncommitted connection
--EXTENSIONS--
oci8
--FILE--
<?php
require __DIR__."/connect.inc";
$stmt = oci_parse($c, "select 1 from dual");
oci_execute($stmt, OCI_DEFAULT);
echo "Done\n";
?>
--EXPECT--
Done