Lines Matching refs:c
7 if (preg_match('/Release 1[012]\./', oci_server_version($c), $matches) !== 1) {
39 oci8_test_sql_execute($c, $stmtarray);
43 if (!($s = oci_parse($c, $insert_sql))) {
59 $s1 = oci_parse($c,$sql1);
60 $cur1 = oci_new_cursor($c);
69 $s2 = oci_parse($c,$sql2);
84 $initial_rt = print_roundtrips($c);
90 $cnt = (print_roundtrips($c) - $initial_rt);
93 $initial_rt = print_roundtrips($c);
99 $cnt = (print_roundtrips($c) - $initial_rt );
104 $cur1 = oci_new_cursor($c);
124 function print_roundtrips($c) {
125 $sql_stmt = "select value from v\$mystat a,v\$statname c where
126 a.statistic#=c.statistic# and c.name='SQL*Net roundtrips to/from client'";
127 $s = oci_parse($c,$sql_stmt);
141 oci8_test_sql_execute($c, $stmtarray);