/PHP-7.2/ext/oci8/tests/ |
H A D | privileged_connect1.phpt | 12 oci_connect("", "", "", false, OCI_SYSOPER); 13 oci_connect("", "", "", false, OCI_SYSDBA); 14 oci_connect("", "", "", false, -1); 15 oci_connect("", "", "", false, "qwe"); 20 Warning: oci_connect(): ORA-%d: %s in %s on line %d 22 Warning: oci_connect(): ORA-%d: %s in %s on line %d 24 Warning: oci_connect(): Invalid session mode specified (-1) in %s on line %d 26 Warning: oci_connect() expects parameter 5 to be int%s string given in %s on line %d
|
H A D | privileged_connect.phpt | 10 oci_connect("", "", "", false, OCI_SYSOPER); 11 oci_connect("", "", "", false, OCI_SYSDBA); 12 oci_connect("", "", "", false, -1); 13 oci_connect("", "", "", false, "qwe"); 18 Warning: oci_connect(): Privileged connect is disabled. Enable oci8.privileged_connect to be able t… 20 Warning: oci_connect(): Privileged connect is disabled. Enable oci8.privileged_connect to be able t… 22 Warning: oci_connect(): Invalid session mode specified (-1) in %s on line %d 24 Warning: oci_connect() expects parameter 5 to be int%s string given in %s on line %d
|
H A D | connect_with_charset_001.phpt | 2 oci_connect() with invalid character set 10 var_dump($c1 = oci_connect($user, $password, $dbase)); 11 var_dump($c2 = oci_connect($user, $password, $dbase, "")); 12 var_dump($c3 = oci_connect($user, $password, $dbase, "blah")); 13 var_dump($c4 = oci_connect($user, $password, $dbase, "obviously wrong")); 17 var_dump($c5 = oci_connect($user, $password, $dbase, "US7ASCII")); 18 var_dump($c6 = oci_connect($user, $password, $dbase, "UTF8")); 28 Warning: oci_connect(): Invalid character set name: blah in %s on line %d 31 Warning: oci_connect(): Invalid character set name: obviously wrong in %s on line %d
|
H A D | extauth_01.phpt | 2 Test External Authentication errors with oci_connect 19 $c = oci_connect('/', 'notemtpy', 'anything', null, OCI_CRED_EXT); 46 $c = oci_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER); 64 $c = oci_connect('', '', 'anything', null, OCI_CRED_EXT); 73 $c = oci_connect('/', '', 'anything', null, OCI_CRED_EXT); 82 $c = oci_connect('/', null, 'anything', null, OCI_CRED_EXT); 91 $c = oci_connect('/', '', 'd', null, OCI_SYSDBA+OCI_CRED_EXT); 144 Warning: oci_connect(): ORA-12154: %s in %s on line %d 158 Warning: oci_connect(): ORA-12154: %s in %s on line %d 172 Warning: oci_connect(): ORA-%d: TNS:%s in %s on line %d [all …]
|
H A D | connect.phpt | 2 oci_connect() 11 var_dump(oci_connect($user, $password, $dbase)); 14 var_dump(oci_connect($user, $password));
|
H A D | connect_without_oracle_home_11.phpt | 2 oci_connect() without ORACLE_HOME set (OCIServerAttach() segfaults) 29 var_dump(oci_connect($user, $password, $dbase)); 32 var_dump(oci_connect($user, $password)); 39 Warning: oci_connect(): OCIEnvNlsCreate() failed. There is something wrong with your system - pleas… 41 Warning: oci_connect(): Error while trying to retrieve text for error ORA-01804
|
H A D | error1.phpt | 2 oci_error() when oci_connect() fails 8 var_dump(oci_connect("some", "some", "some")); 15 Warning: oci_connect(): ORA-12154: %s in %s on line %d
|
H A D | connect_scope1.phpt | 2 Test oci_connect end-of-scope when statement returned 26 echo "Test 1 - oci_connect\n"; 33 $c = oci_connect($user,$password,$dbase); 35 $c = oci_connect($user,$password); 72 Test 1 - oci_connect
|
H A D | connect_without_oracle_home.phpt | 2 oci_connect() without ORACLE_HOME set (OCIServerAttach() segfaults) 26 var_dump(oci_connect($user, $password, $dbase)); 29 var_dump(oci_connect($user, $password)); 36 Warning: oci_connect(): OCIEnvNlsCreate() failed. There is something wrong with your system - pleas…
|
H A D | persistent.phpt | 13 var_dump(oci_connect($user, $password, $dbase)); 14 var_dump(oci_connect($user, $password, $dbase)); 15 var_dump(oci_connect($user, $password, $dbase));
|
H A D | edition_2.phpt | 80 $c5 = get_conn(1); //oci_connect() 91 $c1 = get_conn(1); //oci_connect() 172 Testing with oci_connect() 189 Testing with oci_connect() 195 Testing with oci_connect() 199 Testing with oci_connect() 202 Testing with oci_connect() 206 Testing with oci_connect() 221 Testing with oci_connect() 233 Testing with oci_connect() [all …]
|
H A D | connect.inc | 6 $c = @oci_connect($user, $password, $dbase); 9 $c = @oci_connect($user, $password);
|
H A D | debug.phpt | 13 oci_connect($user, $password, $dbase); 16 oci_connect($user, $password);
|
H A D | pecl_bug16035.phpt | 19 oci_connect('abc', 'def', 'ghi', 'jkl'); 25 Warning: oci_connect(): OCIEnvNlsCreate() failed. There is something wrong with your system - pleas… 27 Warning: oci_connect(): Error while trying to retrieve text for error ORA-01804
|
H A D | drcp_conn_close1.phpt | 2 DRCP: oci_connect() with oci_close() and oci8.old_oci_close_semantics ON 20 var_dump($conn1 = oci_connect($user,$password,$dbase)); 26 var_dump($conn2 = oci_connect($user,$password,$dbase));
|
H A D | drcp_characterset.phpt | 2 DRCP: oci_pconnect() and oci_connect() with different character sets 10 // Create connections with oci_connect and oci_pconnect with UTF8 as Charset 12 $c1 = oci_connect($user,$password,$dbase,"UTF8"); 22 $c2 = oci_connect($user,$password,$dbase,"US7ASCII");
|
H A D | drcp_conn_close2.phpt | 2 DRCP: oci_connect() with oci_close() and oci8.old_oci_close_semantics OFF 22 var_dump($conn1 = oci_connect($user,$password,$dbase)); 27 var_dump($conn2 = oci_connect($user,$password,$dbase));
|
H A D | serverversion.phpt | 11 var_dump($c = oci_connect($user, $password, $dbase)); 14 var_dump($c = oci_connect($user, $password));
|
H A D | drcp_connect1.phpt | 2 DRCP: oci_connect() 17 // Open a number of connections with oci_connect and oci_pconnect and verify 23 var_dump($conn1 = oci_connect($user,$password,$dbase)); 37 var_dump($conn2 = oci_connect($user,$password,$dbase)); 45 var_dump($conn3 = oci_connect($user,$password,$dbase));
|
H A D | conn_attr_3.phpt | 25 // With oci_connect ,oci_pconnect ,oci_new_connect 27 var_dump($conn1 = get_conn(1)); //oci_connect() 33 var_dump($conn1 = get_conn(1)); //oci_connect() 66 Testing with oci_connect() 70 Testing with oci_connect()
|
H A D | drcp_scope1.phpt | 2 DRCP: oci_new_connect() and oci_connect() with scope end when oci8.old_oci_close_semantics ON 18 // will not be reflected for oci_connect and oci_new_connect. 51 var_dump($conn1 = oci_connect($user,$password,$dbase)); 67 var_dump($conn1 = oci_connect($user,$password,$dbase));
|
H A D | drcp_scope2.phpt | 2 DRCP: oci_new_connect() and oci_connect with scope end when oci8.old_oci_close_semantics OFF 18 // will not be reflected for oci_connect and oci_new_connect. 51 var_dump($conn1 = oci_connect($user,$password,$dbase)); 67 var_dump($conn1 = oci_connect($user,$password,$dbase));
|
H A D | connect_scope_try1.phpt | 2 Check oci_connect try/catch end-of-scope with old_oci_close_semantics Off 37 $c = oci_connect($user,$password,$dbase); 39 $c = oci_connect($user,$password);
|
H A D | connect_scope_try2.phpt | 2 Check oci_connect try/catch end-of-scope with old_oci_close_semantics On 37 $c = oci_connect($user,$password,$dbase); 39 $c = oci_connect($user,$password);
|
H A D | error.phpt | 14 var_dump(oci_connect($user, $password, $dbase)); 17 var_dump(oci_connect($user, $password));
|