php-src/ext/oci8/tests/privileged_connect.phpt

32 lines
1.0 KiB
Plaintext
Raw Normal View History

2005-09-06 19:33:18 +00:00
--TEST--
privileged connect tests
--SKIPIF--
<?php if (!extension_loaded('oci8')) die("skip no oci8 extension"); ?>
--ENV--
return "
ORACLE_HOME=".(isset($_ENV['ORACLE_HOME']) ? $_ENV['ORACLE_HOME'] : '')."
NLS_LANG=".(isset($_ENV['NLS_LANG']) ? $_ENV['NLS_LANG'] : '')."
TNS_ADMIN=".(isset($_ENV['TNS_ADMIN']) ? $_ENV['TNS_ADMIN'] : '')."
";
--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(): Privileged connect is disabled. Enable oci8.privileged_connect to be able to connect as SYSOPER or SYSDBA in %s on line %d
Warning: oci_connect(): Privileged connect is disabled. Enable oci8.privileged_connect to be able to connect as SYSOPER or SYSDBA 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