Home
last modified time | relevance | path

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

12

/PHP-5.5/ext/oci8/tests/
H A Dextauth_03.phpt2 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('/', '', 'c', 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 Ddrcp_characterset.phpt2 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 Dconnect_scope2.phpt2 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 Dconnect_1.phpt2 oci_pconnect() & oci_new_connect()
11 var_dump($c1 = oci_pconnect($user, $password, $dbase));
14 var_dump($c1 = oci_pconnect($user, $password));
H A Dpersistent.phpt10 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 Ddrcp_connect1.phpt17 // 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 Dtestping.phpt14 $c = oci_pconnect($user,$password,$dbase);
17 $c = oci_pconnect($user,$password);
H A Ddrcp_pconn_close1.phpt2 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 Ddrcp_privileged.phpt28 var_dump(oci_pconnect($user,$password,$dbase,false,OCI_SYSDBA));
29 var_dump(oci_pconnect($user,$password,$dbase,false,OCI_SYSOPER));
47 Warning: oci_pconnect(): ORA-01031: %s in %s on line %d
50 Warning: oci_pconnect(): ORA-01031: %s in %s on line %d
H A Dconn_attr_2.phpt30 var_dump($pc1 = oci_pconnect($user,$password,$dbase));
37 var_dump($pc3 = oci_pconnect($user,$password,$dbase));
44 var_dump($pc2 = oci_pconnect($user,$password,$dbase,'UTF8'));
55 var_dump($pc4 = oci_pconnect($user,$password,$dbase));
62 var_dump($sys_c1 = oci_pconnect($user,$password,$dbase,false,OCI_SYSDBA));
103 Warning: oci_pconnect(): ORA-01031: %s on line %d
H A Ddriver_name.phpt26 // with oci_pconnect()
27 echo "Testing with oci_pconnect()\n";
28 $pc1=oci_pconnect($user,$password,$dbase);
57 Testing with oci_pconnect()
H A Ddrcp_pconn_close2.phpt2 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 Dconn_attr_3.phpt22 // With oci_connect ,oci_pconnect ,oci_new_connect
34 var_dump($pconn1 = get_conn(2)); //oci_pconnect()
40 var_dump($pconn1 = get_conn(2)); //oci_pconnect()
70 Testing with oci_pconnect()
74 Testing with oci_pconnect()
H A Ddrcp_scope3.phpt2 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 Dconnect_scope_try5.phpt2 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 Dconnect_scope_try6.phpt2 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 Ddrcp_scope4.phpt2 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 Ddrcp_scope5.phpt2 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 Dpassword_2.phpt25 $c1 = oci_pconnect("testuser", "testuserpwd", $dbase);
32 $c2 = oci_pconnect("testuser", "testuserpwd2", $dbase);
37 $c3 = oci_pconnect("testuser", "testuserpwd", $dbase);
H A Dextauth_04.phpt33 $c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT);
53 Warning: oci_pconnect(): External Authentication is not supported on Windows in %s on line %d
H A Dselect_null.phpt10 $pc = oci_pconnect($user, $password, $dbase);
H A Dexecute_mode.phpt10 $pc = oci_pconnect($user, $password, $dbase);
H A Dconn_attr_1.phpt33 // With oci_connect, oci_pconnect, oci_new_connect
41 $conn2 = get_conn(2); //oci_pconnect()
79 Testing with oci_pconnect()
H A Dbug42134.phpt48 $c = oci_pconnect($user,$password,$dbase);
51 $c = oci_pconnect($user,$password);
H A Ddrcp_cclass1.phpt38 $c = oci_pconnect($user, $password, $dbase);
47 $c = oci_pconnect($user, $password, $dbase);

Completed in 31 milliseconds

12