mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
28 lines
681 B
PHP
28 lines
681 B
PHP
--TEST--
|
|
privileged connect tests
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
|
|
--INI--
|
|
oci8.privileged_connect=1
|
|
--FILE--
|
|
<?php
|
|
|
|
require dirname(__FILE__)."/connect.inc";
|
|
|
|
oci_connect("", "", "", false, OCI_SYSOPER);
|
|
oci_connect("", "", "", false, OCI_SYSDBA);
|
|
oci_connect("", "", "", false, -1);
|
|
oci_connect("", "", "", false, "qwe");
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: oci_connect(): ORA-%d: %s in %s on line %d
|
|
|
|
Warning: oci_connect(): ORA-%d: %s in %s on line %d
|
|
|
|
Warning: oci_connect(): Invalid session mode specified (-1) in %s on line %d
|
|
|
|
Warning: oci_connect() expects parameter 5 to be long, string given in %s on line %d
|
|
Done
|