Home
last modified time | relevance | path

Searched refs:oci_new_connect (Results 1 – 25 of 34) sorted by relevance

12

/PHP-5.5/ext/oci8/tests/
H A Dextauth_02.phpt2 Test External Authentication errors with oci_new_connect
18 $c = oci_new_connect('/', 'notemtpy', 'anything', null, OCI_CRED_EXT);
45 $c = oci_new_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER);
63 $c = oci_new_connect('', '', 'anything', null, OCI_CRED_EXT);
72 $c = oci_new_connect('/', '', 'anything', null, OCI_CRED_EXT);
81 $c = oci_new_connect('/', null, 'anything', null, OCI_CRED_EXT);
90 $c = oci_new_connect('/', '', 'c', null, OCI_SYSDBA+OCI_CRED_EXT);
143 Warning: oci_new_connect(): ORA-12154: %s in %s on line %d
157 Warning: oci_new_connect(): ORA-12154: %s in %s on line %d
171 Warning: oci_new_connect(): ORA-%d: TNS:%s %s on line %d
[all …]
H A Ddrcp_newconnect.phpt2 DRCP: oci_new_connect()
13 // Open two connections with oci_new_connect
16 var_dump($c1 = oci_new_connect($user,$password,$dbase));
21 var_dump($c2 = oci_new_connect($user,$password,$dbase));
H A Dconnect_1.phpt2 oci_pconnect() & oci_new_connect()
18 var_dump($c2 = oci_new_connect($user, $password, $dbase));
21 var_dump($c2 = oci_new_connect($user, $password));
H A Dconnect_scope_try3.phpt2 Check oci_new_connect try/catch end-of-scope with old_oci_close_semantics Off
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
37 $c = oci_new_connect($user,$password,$dbase);
39 $c = oci_new_connect($user,$password);
H A Dconnect_scope_try4.phpt2 Check oci_new_connect try/catch end-of-scope with old_oci_close_semantics On
20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
37 $c = oci_new_connect($user,$password,$dbase);
39 $c = oci_new_connect($user,$password);
H A Ddrcp_scope2.phpt2 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.
21 $c = oci_new_connect($user,$password,$dbase);
48 var_dump($conn1 = oci_new_connect($user,$password,$dbase));
64 var_dump($conn1 = oci_new_connect($user,$password,$dbase));
H A Ddrcp_scope1.phpt2 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.
21 $c = oci_new_connect($user,$password,$dbase);
48 var_dump($conn1 = oci_new_connect($user,$password,$dbase));
64 var_dump($conn1 = oci_new_connect($user,$password,$dbase));
H A Ddrcp_privileged.phpt26 var_dump(oci_new_connect($user,$password,$dbase,false,OCI_SYSDBA));
27 var_dump(oci_new_connect($user,$password,$dbase,false,OCI_SYSOPER));
41 Warning: oci_new_connect(): ORA-01031: %s in %s on line %d
44 Warning: oci_new_connect(): ORA-01031: %s in %s on line %d
H A Dconn_attr_3.phpt22 // With oci_connect ,oci_pconnect ,oci_new_connect
44 var_dump($nconn1 = get_conn(3)); //oci_new_connect()
52 var_dump($nconn1 = get_conn(3)); //oci_new_connect()
77 Testing with oci_new_connect()
83 Testing with oci_new_connect()
H A Ddriver_name.phpt32 echo "Testing with oci_new_connect()\n";
33 $nc1=oci_new_connect($user,$password,$dbase);
59 Testing with oci_new_connect()
H A Dextauth_04.phpt24 $c = oci_new_connect('/', '', 'anything', null, OCI_CRED_EXT);
49 Warning: oci_new_connect(): External Authentication is not supported on Windows in %s on line %d
H A Dconnect_scope1.phpt18 $c1 = oci_new_connect($user,$password,$dbase);
20 $c1 = oci_new_connect($user,$password);
H A Dconnect_scope2.phpt18 $c1 = oci_new_connect($user,$password,$dbase);
20 $c1 = oci_new_connect($user,$password);
H A Dedition_2.phpt38 // With oci_connect, oci_pconnect, oci_new_connect
66 $c3 = get_conn(3); //oci_new_connect()
168 Testing with oci_new_connect()
177 Testing with oci_new_connect()
204 Testing with oci_new_connect()
206 Warning: oci_new_connect(): ORA-38801: %s ORA_EDITION in %s on line %d
219 Testing with oci_new_connect()
H A Dconnect_scope_try1.phpt20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
H A Dconnect_scope_try2.phpt20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
H A Dconnect_scope_try5.phpt20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
H A Dconnect_scope_try6.phpt20 $c1 = oci_new_connect($user,$password,$dbase);
22 $c1 = oci_new_connect($user,$password);
H A Dconn_attr_1.phpt33 // With oci_connect, oci_pconnect, oci_new_connect
47 $conn3 = get_conn(3); //oci_new_connect()
88 Testing with oci_new_connect()
H A Dbug42134.phpt32 $c = oci_new_connect($user,$password,$dbase);
35 $c = oci_new_connect($user,$password);
H A Dconn_attr_5.phpt57 Testing with oci_new_connect()
65 Testing with oci_new_connect()
H A Dconn_attr.inc67 Default will give a oci_new_connect */
84 echo "Testing with oci_new_connect()\n";
85 return(oci_new_connect($user,$password,$dbase));
H A Dbug42841.phpt15 // note a oci_new_connect() occurs lower in the script
114 $c = oci_new_connect($user, $password, $dbase);
H A Derror_parse.phpt34 $c2 = oci_new_connect($user,$password,$dbase);
37 $c2 = oci_new_connect($user,$password);
H A Ddrcp_scope3.phpt21 $c = oci_new_connect($user,$password,$dbase);

Completed in 33 milliseconds

12