Home
last modified time | relevance | path

Searched refs:oci_pconnect (Results 1 – 25 of 39) sorted by relevance

12

/PHP-8.3/ext/oci8/tests/
H A Dextauth_03.phpt2 Test External Authentication errors with oci_pconnect
21 $c = oci_pconnect('/', 'notemtpy', 'anything', null, OCI_CRED_EXT);
48 $c = oci_pconnect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER);
66 $c = oci_pconnect('', '', 'anything', null, OCI_CRED_EXT);
75 $c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT);
84 $c = oci_pconnect('/', null, 'anything', null, OCI_CRED_EXT);
93 $c = oci_pconnect('/', '', 'd', null, OCI_SYSDBA+OCI_CRED_EXT);
144 Warning: oci_pconnect(): ORA-12154: %s in %s on line %d
158 Warning: oci_pconnect(): ORA-12154: %s in %s on line %d
172 Warning: oci_pconnect(): ORA-%d: TNS:%s in %s on line %d
[all …]
H A Ddrcp_characterset.phpt2 DRCP: oci_pconnect() and oci_connect() with different character sets
14 // Create connections with oci_connect and oci_pconnect with UTF8 as Charset
19 // Now with oci_pconnect()
21 $p1 = oci_pconnect($user,$password,$dbase,"UTF8");
29 // Now with oci_pconnect()
31 $p2 = oci_pconnect($user,$password,$dbase,"US7ASCII");
H A Dconnect_scope2.phpt2 Test oci_pconnect end-of-scope when statement returned
30 echo "Test 1 - oci_pconnect\n";
37 $c = oci_pconnect($user,$password,$dbase);
39 $c = oci_pconnect($user,$password);
76 Test 1 - oci_pconnect
H A Dconnect_1.phpt2 oci_pconnect() & oci_new_connect()
15 var_dump($c1 = oci_pconnect($user, $password, $dbase));
18 var_dump($c1 = oci_pconnect($user, $password));
H A Dpersistent.phpt14 var_dump(oci_pconnect($user, $password, $dbase));
15 var_dump(oci_pconnect($user, $password, $dbase));
16 var_dump(oci_pconnect($user, $password, $dbase));
H A Dtestping.phpt18 $c = oci_pconnect($user,$password,$dbase);
21 $c = oci_pconnect($user,$password);
H A Ddrcp_connect1.phpt20 // Open a number of connections with oci_connect and oci_pconnect and verify
58 echo " This is with oci_pconnect().....\n";
59 var_dump($pconn1 = oci_pconnect($user,$password,$dbase));
64 // Second connection with oci_pconnect should return the same session hence the
68 var_dump($pconn2 = oci_pconnect($user,$password,$dbase));
94 This is with oci_pconnect().....
H A Ddrcp_pconn_close1.phpt2 DRCP: oci_pconnect() with oci_close() and oci8.old_oci_close_semantics ON
23 var_dump($conn1 = oci_pconnect($user,$password,$dbase));
29 var_dump($conn2 = oci_pconnect($user,$password,$dbase));
H A Ddrcp_pconn_close2.phpt2 DRCP: oci_pconnect() with oci_close() and oci8.old_oci_close_semantics OFF
25 var_dump($conn1 = oci_pconnect($user,$password,$dbase));
31 var_dump($conn2 = oci_pconnect($user,$password,$dbase));
H A Ddriver_name.phpt34 // with oci_pconnect()
35 echo "Testing with oci_pconnect()\n";
36 $pc1=oci_pconnect($user,$password,$dbase);
65 Testing with oci_pconnect()
H A Ddriver_name_11gR2.phpt31 // with oci_pconnect()
32 echo "Testing with oci_pconnect()\n";
33 $pc1=oci_pconnect($user,$password,$dbase);
62 Testing with oci_pconnect()
H A Dconn_attr_3.phpt29 // With oci_connect ,oci_pconnect ,oci_new_connect
41 var_dump($pconn1 = get_conn(2)); //oci_pconnect()
47 var_dump($pconn1 = get_conn(2)); //oci_pconnect()
77 Testing with oci_pconnect()
81 Testing with oci_pconnect()
H A Dconnect_scope_try5.phpt2 Check oci_pconnect try/catch end-of-scope with old_oci_close_semantics Off
41 $c = oci_pconnect($user,$password,$dbase);
43 $c = oci_pconnect($user,$password);
H A Dconnect_scope_try6.phpt2 Check oci_pconnect try/catch end-of-scope with old_oci_close_semantics On
41 $c = oci_pconnect($user,$password,$dbase);
43 $c = oci_pconnect($user,$password);
H A Ddrcp_scope4.phpt2 DRCP: oci_pconnect() with scope end when oci8.old_oci_close_semantics OFF
42 var_dump($c = oci_pconnect($user,$password,$dbase));
50 var_dump($c = oci_pconnect($user,$password,$dbase));
H A Ddrcp_scope3.phpt2 DRCP: oci_pconnect() with scope end when oci8.old_oci_close_semantics ON
39 var_dump($c = oci_pconnect($user,$password,$dbase));
47 var_dump($c = oci_pconnect($user,$password,$dbase));
H A Dconn_attr_2.phpt34 var_dump($pc1 = oci_pconnect($testuser,$testpassword,$dbase));
41 var_dump($pc3 = oci_pconnect($testuser,$testpassword,$dbase));
48 var_dump($pc2 = oci_pconnect($testuser,$testpassword,$dbase,'UTF8'));
59 var_dump($pc4 = oci_pconnect($testuser,$testpassword,$dbase));
67 $sys_c1 = @oci_pconnect($testuser,$testpassword,$dbase,false,OCI_SYSDBA);
H A Ddrcp_privileged.phpt46 var_dump(oci_pconnect($user,$password,$dbase,false,OCI_SYSDBA));
47 var_dump(oci_pconnect($user,$password,$dbase,false,OCI_SYSOPER));
65 Warning: oci_pconnect(): ORA-01031: %s in %s on line %d
68 Warning: oci_pconnect(): ORA-01031: %s in %s on line %d
H A Ddrcp_scope5.phpt2 DRCP: oci_pconnect() with scope end when oci8.old_oci_close_semantics ON
42 var_dump($c = oci_pconnect($user,$password,$dbase));
50 var_dump($c = oci_pconnect($user,$password,$dbase));
H A Dextauth_04.phpt34 $c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT);
55 Warning: oci_pconnect(): External Authentication is not supported on Windows in %s on line %d
H A Dpassword_2.phpt26 $c1 = oci_pconnect("testuser_pw2", "testuserpwd", $dbase);
33 $c2 = oci_pconnect("testuser_pw2", "testuserpwd2", $dbase);
38 $c3 = oci_pconnect("testuser_pw2", "testuserpwd", $dbase);
H A Dselect_null.phpt14 $pc = oci_pconnect($user, $password, $dbase);
H A Dexecute_mode.phpt14 $pc = oci_pconnect($user, $password, $dbase);
H A Dconn_attr_1.phpt39 // With oci_connect, oci_pconnect, oci_new_connect
47 $conn2 = get_conn(2); //oci_pconnect()
85 Testing with oci_pconnect()
H A Dedition_2.phpt51 // With oci_connect, oci_pconnect, oci_new_connect
65 // With a oci_pconnect with a different charset.
66 $pc1 = oci_pconnect($testuser,$testpassword,$dbase,"utf8");
82 $c4 = get_conn(2); //oci_pconnect()
179 Testing with oci_pconnect()
192 Testing with oci_pconnect()

Completed in 35 milliseconds

12