Home
last modified time | relevance | path

Searched refs:select (Results 51 – 75 of 243) sorted by relevance

12345678910

/PHP-5.3/ext/oci8/tests/
H A Dbind_query.phpt27 $s = oci_parse($c, "select ename from bind_query_tab where empno = :eno");
35 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
46 $s = oci_parse($c, 'select ename from bind_query_tab where sal > :v order by ename');
H A Ddrcp_cclass1.phpt27 $s = oci_parse($c, "select * from dual");
36 $s = oci_parse($c, "select * from dual");
43 $s = oci_parse($c, "select cclass_name from v\$cpool_cc_stats where cclass_name like '%.cc__$t' ord…
H A Dstatement_cache.phpt17 $stmt = oci_parse($pc, "select 1+3 from dual");
21 $stmt = oci_parse($pc, "select 1+3 from dual");
H A Ddefine5.phpt24 $stmt = oci_parse($c, "select string from define5_tab where id = 1");
33 $stmt = oci_parse($c, "select string from define5_tab where id = 1");
42 $stmt = oci_parse($c, "select string from define5_tab where id = 2");
H A Ddupcolnames.phpt28 $s = oci_parse($c, "select * from dupcolnames_tab1, dupcolnames_tab2");
36 $s = oci_parse($c, "select * from dupcolnames_tab1, dupcolnames_tab2");
44 $s = oci_parse($c, "select * from dupcolnames_tab1, dupcolnames_tab2");
H A Dfetch_all5.phpt26 $s = oci_parse($c, "select * from fetch_all5_tab order by 1");
34 $s = oci_parse($c, "select * from fetch_all5_tab order by 1");
42 $s = oci_parse($c, "select * from fetch_all5_tab order by 1");
H A Dfield_funcs3.phpt25 $select_sql = "select * from field_funcs3_tab";
28 die("oci_parse(select) failed!\n");
32 die("oci_execute(select) failed!\n");
H A Dbug47189.phpt15 $s = oci_parse($c, "select * from dual");
24 $s = oci_parse($c, "select * from dual");
H A Ddefine0.phpt22 $stmt = oci_parse($c, "select string from define0_tab");
38 $s2 = oci_parse($c, 'select string from define0_tab');
H A Dbug42841.phpt23 … open out_1 for select 11 from dual union all select 12 from dual union all select 13 from dual;
35 Open retCursor For 'select * from dual';
H A Dconn_attr.inc55 $sel_stmt="select " .$attr. " from v\$session where sid =
56 (select sid from v\$session where audsid =
121 $sel_stmt = "select sys_context('USERENV', 'CURRENT_EDITION_NAME') from dual";
131 $sel_stmt="select " .$attr. " from v\$session where sid =
132 (select sid from v\$session where audsid = sys_context('userenv','sessionid')) order by 1";
H A Dnull_byte_2.phpt20 $s = oci_parse($c, "select * \0from dual");
27 $s = oci_parse($c, "select * from dual where :bv = 1");
H A Dnull_byte_3.phpt17 $s = oci_parse($c, "select * from du\0al");
22 $s = oci_parse($c, "select * from dual where :bv = 'abc'");
H A Dcursor_bind_err.phpt27 $sql = "select cursor(select * from cursor_bind_err_tab) into :cursor from dual";
H A Dfetch_all4.phpt24 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0");
33 $s = oci_parse($c, "select * from fetch_all4_tab where 1 = 0");
H A Dlob_038.phpt39 $s = oci_parse($c,"select clob from ".$schema.$table_name);
49 $s = oci_parse($c, "select clob from ".$schema.$table_name);
86 $s = oci_parse($c, "select blob from ".$schema.$table_name);
93 $s = oci_parse($c, "select blob from ".$schema.$table_name);
H A Dlob_018.phpt43 $query = 'select * from lob_018_tab order by mykey asc';
54 $query = 'select * from lob_018_tab order by mykey desc';
74 $query = 'select * from lob_018_tab where mykey = 3';
/PHP-5.3/ext/sybase_ct/tests/
H A Dtest_types.phpt2 Sybase-CT select and types
18 var_dump(sybase_select_ex($db, 'select
38 >>> Query: select
H A Dtest_appname.phpt28 select
46 select
H A Dbug22403.phpt21 if (!sybase_select_single($db, 'select object_id("'.$sp_name.'")')) {
27 select @param
28 select @param + 1
H A Dbug27843.phpt19 if (!sybase_select_single($db, 'select object_id("'.$sp_name.'")')) {
25 select 1
H A Dbug28354.phpt21 if (!sybase_select_single($db, 'select object_id("'.$sp_name.'")')) {
25 select @@version
/PHP-5.3/ext/pdo_oci/tests/
H A Dbug_33707.phpt2 PDO OCI Bug #33707 (Errors in select statements not reported)
15 $rs = $db->query('select blah from a_table_that_doesnt_exist');
/PHP-5.3/ext/pdo/tests/
H A Dpdo_017.phpt46 $select = $db->prepare('SELECT COUNT(*) FROM test');
47 $select->execute();
48 $res = $select->fetchColumn();
/PHP-5.3/ext/pgsql/tests/
H A Dbug60244.phpt13 $result = pg_query("select 'a' union select 'b'");

Completed in 21 milliseconds

12345678910