mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
31c35e5cad
remove ENV tag from the old ones
17 lines
290 B
PHP
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
|