Searched refs:OCI_SYSOPER (Results 1 – 12 of 12) sorted by relevance
/PHP-8.3/ext/oci8/tests/ |
H A D | extauth_01.phpt | 48 $c = oci_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER); 57 $c = oci_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER+OCI_CRED_EXT); 102 $c = oci_connect('/', '', 'd', null, OCI_SYSOPER+OCI_CRED_EXT); 129 Warning: oci_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d 134 Warning: oci_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
|
H A D | extauth_02.phpt | 48 $c = oci_new_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER); 57 $c = oci_new_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER+OCI_CRED_EXT); 102 $c = oci_new_connect('/', '', 'd', null, OCI_SYSOPER+OCI_CRED_EXT); 129 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d 134 Warning: oci_new_connect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
|
H A D | extauth_03.phpt | 48 $c = oci_pconnect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER); 57 $c = oci_pconnect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER+OCI_CRED_EXT); 102 $c = oci_pconnect('/', '', 'd', null, OCI_SYSOPER+OCI_CRED_EXT); 129 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d 134 Warning: oci_pconnect(): OCI_SYSDBA and OCI_SYSOPER cannot be used together in %s on line %d
|
H A D | drcp_privileged.phpt | 43 var_dump(oci_connect($user,$password,$dbase,false,OCI_SYSOPER)); 45 var_dump(oci_new_connect($user,$password,$dbase,false,OCI_SYSOPER)); 47 var_dump(oci_pconnect($user,$password,$dbase,false,OCI_SYSOPER));
|
H A D | privileged_connect1.phpt | 17 oci_connect("", "", "", false, OCI_SYSOPER);
|
H A D | privileged_connect.phpt | 14 oci_connect("", "", "", false, OCI_SYSOPER);
|
/PHP-8.3/ext/oci8/ |
H A D | oci8.c | 811 if (session_mode & ~(OCI_SYSOPER | OCI_SYSDBA | PHP_OCI_CRED_EXT)) { in php_oci_do_connect_ex() 815 if (session_mode & (OCI_SYSOPER | OCI_SYSDBA | PHP_OCI_CRED_EXT)) { in php_oci_do_connect_ex() 816 if ((session_mode & OCI_SYSOPER) && (session_mode & OCI_SYSDBA)) { in php_oci_do_connect_ex() 833 if (session_mode & (OCI_SYSOPER | OCI_SYSDBA)) { in php_oci_do_connect_ex() 858 if ((session_mode & (OCI_SYSOPER | OCI_SYSDBA | PHP_OCI_CRED_EXT)) || (new_password_len)) { in php_oci_do_connect_ex()
|
H A D | php_oci8_int.h | 113 #if ((PHP_OCI_CRED_EXT == OCI_DEFAULT) || (PHP_OCI_CRED_EXT & (OCI_SYSOPER | OCI_SYSDBA)))
|
H A D | oci8.stub.php | 14 const OCI_SYSOPER = UNKNOWN; define
|
H A D | oci8_arginfo.h | 805 REGISTER_LONG_CONSTANT("OCI_SYSOPER", OCI_SYSOPER, CONST_PERSISTENT); in register_oci8_symbols()
|
/PHP-8.3/ |
H A D | php.ini-development | 1256 ; credentials (OCI_SYSOPER, OCI_SYSDBA)
|
H A D | php.ini-production | 1258 ; credentials (OCI_SYSOPER, OCI_SYSDBA)
|
Completed in 34 milliseconds