/PHP-7.2/ext/oci8/tests/ |
H A D | extauth_03.phpt | 2 Test External Authentication errors with oci_pconnect 18 $c = oci_pconnect('/', 'notemtpy', 'anything', null, OCI_CRED_EXT); 45 $c = oci_pconnect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER); 63 $c = oci_pconnect('', '', 'anything', null, OCI_CRED_EXT); 72 $c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT); 81 $c = oci_pconnect('/', null, 'anything', null, OCI_CRED_EXT); 90 $c = oci_pconnect('/', '', 'd', null, OCI_SYSDBA+OCI_CRED_EXT); 143 Warning: oci_pconnect(): ORA-12154: %s in %s on line %d 157 Warning: oci_pconnect(): ORA-12154: %s in %s on line %d 171 Warning: oci_pconnect(): ORA-%d: TNS:%s in %s on line %d [all …]
|
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 15 // Now with oci_pconnect() 17 $p1 = oci_pconnect($user,$password,$dbase,"UTF8"); 25 // Now with oci_pconnect() 27 $p2 = oci_pconnect($user,$password,$dbase,"US7ASCII");
|
H A D | connect_scope2.phpt | 2 Test oci_pconnect end-of-scope when statement returned 26 echo "Test 1 - oci_pconnect\n"; 33 $c = oci_pconnect($user,$password,$dbase); 35 $c = oci_pconnect($user,$password); 72 Test 1 - oci_pconnect
|
H A D | connect_1.phpt | 2 oci_pconnect() & oci_new_connect() 11 var_dump($c1 = oci_pconnect($user, $password, $dbase)); 14 var_dump($c1 = oci_pconnect($user, $password));
|
H A D | persistent.phpt | 10 var_dump(oci_pconnect($user, $password, $dbase)); 11 var_dump(oci_pconnect($user, $password, $dbase)); 12 var_dump(oci_pconnect($user, $password, $dbase));
|
H A D | drcp_connect1.phpt | 17 // Open a number of connections with oci_connect and oci_pconnect and verify 55 echo " This is with oci_pconnect().....\n"; 56 var_dump($pconn1 = oci_pconnect($user,$password,$dbase)); 61 // Second connection with oci_pconnect should return the same session hence the 65 var_dump($pconn2 = oci_pconnect($user,$password,$dbase)); 91 This is with oci_pconnect().....
|
H A D | testping.phpt | 14 $c = oci_pconnect($user,$password,$dbase); 17 $c = oci_pconnect($user,$password);
|
H A D | drcp_pconn_close1.phpt | 2 DRCP: oci_pconnect() with oci_close() and oci8.old_oci_close_semantics ON 19 var_dump($conn1 = oci_pconnect($user,$password,$dbase)); 25 var_dump($conn2 = oci_pconnect($user,$password,$dbase));
|
H A D | drcp_pconn_close2.phpt | 2 DRCP: oci_pconnect() with oci_close() and oci8.old_oci_close_semantics OFF 21 var_dump($conn1 = oci_pconnect($user,$password,$dbase)); 27 var_dump($conn2 = oci_pconnect($user,$password,$dbase));
|
H A D | driver_name_11gR2.phpt | 29 // with oci_pconnect() 30 echo "Testing with oci_pconnect()\n"; 31 $pc1=oci_pconnect($user,$password,$dbase); 60 Testing with oci_pconnect()
|
H A D | conn_attr_3.phpt | 25 // With oci_connect ,oci_pconnect ,oci_new_connect 37 var_dump($pconn1 = get_conn(2)); //oci_pconnect() 43 var_dump($pconn1 = get_conn(2)); //oci_pconnect() 73 Testing with oci_pconnect() 77 Testing with oci_pconnect()
|
H A D | driver_name.phpt | 32 // with oci_pconnect() 33 echo "Testing with oci_pconnect()\n"; 34 $pc1=oci_pconnect($user,$password,$dbase); 63 Testing with oci_pconnect()
|
H A D | connect_scope_try6.phpt | 2 Check oci_pconnect try/catch end-of-scope with old_oci_close_semantics On 37 $c = oci_pconnect($user,$password,$dbase); 39 $c = oci_pconnect($user,$password);
|
H A D | drcp_scope3.phpt | 2 DRCP: oci_pconnect() with scope end when oci8.old_oci_close_semantics ON 35 var_dump($c = oci_pconnect($user,$password,$dbase)); 43 var_dump($c = oci_pconnect($user,$password,$dbase));
|
H A D | connect_scope_try5.phpt | 2 Check oci_pconnect try/catch end-of-scope with old_oci_close_semantics Off 37 $c = oci_pconnect($user,$password,$dbase); 39 $c = oci_pconnect($user,$password);
|
H A D | drcp_scope4.phpt | 2 DRCP: oci_pconnect() with scope end when oci8.old_oci_close_semantics OFF 38 var_dump($c = oci_pconnect($user,$password,$dbase)); 46 var_dump($c = oci_pconnect($user,$password,$dbase));
|
H A D | conn_attr_2.phpt | 30 var_dump($pc1 = oci_pconnect($testuser,$testpassword,$dbase)); 37 var_dump($pc3 = oci_pconnect($testuser,$testpassword,$dbase)); 44 var_dump($pc2 = oci_pconnect($testuser,$testpassword,$dbase,'UTF8')); 55 var_dump($pc4 = oci_pconnect($testuser,$testpassword,$dbase)); 63 $sys_c1 = @oci_pconnect($testuser,$testpassword,$dbase,false,OCI_SYSDBA);
|
H A D | drcp_privileged.phpt | 44 var_dump(oci_pconnect($user,$password,$dbase,false,OCI_SYSDBA)); 45 var_dump(oci_pconnect($user,$password,$dbase,false,OCI_SYSOPER)); 63 Warning: oci_pconnect(): ORA-01031: %s in %s on line %d 66 Warning: oci_pconnect(): ORA-01031: %s in %s on line %d
|
H A D | drcp_scope5.phpt | 2 DRCP: oci_pconnect() with scope end when oci8.old_oci_close_semantics ON 38 var_dump($c = oci_pconnect($user,$password,$dbase)); 46 var_dump($c = oci_pconnect($user,$password,$dbase));
|
H A D | password_2.phpt | 25 $c1 = oci_pconnect("testuser_pw2", "testuserpwd", $dbase); 32 $c2 = oci_pconnect("testuser_pw2", "testuserpwd2", $dbase); 37 $c3 = oci_pconnect("testuser_pw2", "testuserpwd", $dbase);
|
H A D | extauth_04.phpt | 33 $c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT); 56 Warning: oci_pconnect(): External Authentication is not supported on Windows in %s on line %d
|
H A D | select_null.phpt | 10 $pc = oci_pconnect($user, $password, $dbase);
|
H A D | execute_mode.phpt | 10 $pc = oci_pconnect($user, $password, $dbase);
|
H A D | conn_attr_1.phpt | 35 // With oci_connect, oci_pconnect, oci_new_connect 43 $conn2 = get_conn(2); //oci_pconnect() 81 Testing with oci_pconnect()
|
H A D | bug42134.phpt | 48 $c = oci_pconnect($user,$password,$dbase); 51 $c = oci_pconnect($user,$password);
|