Home
last modified time | relevance | path

Searched refs:table (Results 101 – 125 of 627) sorted by relevance

12345678910>>...26

/PHP-7.2/ext/pdo_dblib/tests/
H A Dbatch_stmt_ins_exec.phpt15 $db->query("create table #php_pdo(id int); ");
28 "drop table #php_pdo; " .
39 // check results from the drop table
H A Dbatch_stmt_ins_sel_up_del.phpt15 "create table #php_pdo(id int);" .
21 "drop table #php_pdo;"
24 // check results from the create table
/PHP-7.2/ext/pdo_oci/tests/
H A Dpecl_bug_6364.phpt15 @$dbh->exec ("drop table bug_6364_t");
17 $dbh->exec ("create table bug_6364_t (c1 varchar2(10), c2 varchar2(10), c3 varchar2(10), c4 varchar…
42 $dbh->exec ("drop table bug_6364_t");
H A Dpdo_oci_attr_autocommit_1.phpt17 $dbh->exec("drop table pdo_ac_tab");
40 $dbh->exec("create table pdo_ac_tab (col1 varchar2(20))");
52 $dbh->exec("drop table pdo_ac_tab");
/PHP-7.2/ext/oci8/tests/
H A Dbind_rowid.phpt21 "drop table rid_tab",
22 "create table rid_tab (id number, address varchar2(40))",
55 "drop table rid_tab"
H A Ddefine5.phpt13 "drop table define5_tab",
14 "create table define5_tab (id number, string varchar(10))",
52 "drop table define5_tab"
H A Dlob_043.phpt17 "drop table lob_043_tab",
18 "create table lob_043_tab(id number, c1 clob)",
73 "drop table lob_043_tab"
H A Dlob_044.phpt16 "drop table lob_044_tab",
17 "create table lob_044_tab (blob BLOB)",
54 "drop table lob_044_tab"
H A Dbind_long.phpt13 $stmt = oci_parse($c, "drop table phptestlng");
16 $stmt = oci_parse($c, "create table phptestlng( id number(10), filetxt long)");
56 $stmt = oci_parse($c, "drop table phptestlng");
H A Dcommit_002.phpt16 "drop table commit_002_tab",
17 "create table commit_002_tab
57 "drop table commit_002_tab"
H A Derror_bind_2.phpt25 "drop table error_bind_2_tab",
26 "create table error_bind_2_tab(name varchar(10))"
48 "drop table error_bind_2_tab",
H A Dlob_002.phpt16 "drop table lob_002_tab",
17 "create table lob_002_tab (id number, b1 BLOB)",
50 "drop table lob_002_tab"
H A Dlob_029.phpt30 $s = oci_parse($c, "drop table FileTest");
43 $s = oci_parse($c, "create table FileTest (FileNum number, FileDesc varchar2(30), Image bfile)");
57 echo "Test 1. Check how many rows in the table\n";
84 $s = oci_parse($c, "drop table FileTest");
93 Test 1. Check how many rows in the table
H A Dconnect_scope_try6.phpt15 "drop table scope_try6_tab",
16 "create table scope_try6_tab (c1 number)"
70 "drop table scope_try6_tab"
H A Dfield_funcs3.phpt12 "drop table field_funcs3_tab",
13 "create table field_funcs3_tab(c1_c char(2), c2_v varchar2(2), c3_n number, c4_d date)",
52 "drop table field_funcs3_tab"
H A Dlob_041.phpt16 "DROP table lob_041_tab",
17 "CREATE table lob_041_tab(c1 CLOB)",
60 "DROP table lob_041_tab"
H A Dconnect_scope_try1.phpt15 "drop table scope_try1_tab",
16 "create table scope_try1_tab (c1 number)"
70 "drop table scope_try1_tab"
H A Dconnect_scope_try2.phpt15 "drop table scope_try2_tab",
16 "create table scope_try2_tab (c1 number)"
70 "drop table scope_try2_tab"
H A Dconnect_scope_try3.phpt15 "drop table scope_try3_tab",
16 "create table scope_try3_tab (c1 number)"
70 "drop table scope_try3_tab"
H A Dconnect_scope_try4.phpt15 "drop table scope_try4_tab",
16 "create table scope_try4_tab (c1 number)"
70 "drop table scope_try4_tab"
H A Dconnect_scope_try5.phpt15 "drop table scope_try5_tab",
16 "create table scope_try5_tab (c1 number)"
70 "drop table scope_try5_tab"
H A Ddrcp_scope4.phpt17 // updates a table (without committing). Another connection is opened
18 // from function 2, and the table queried. When function1 ends, the
23 // Create the table
H A Dbind_raw.phpt13 $stmt = oci_parse($c, "create table phptestrawtable( id number(10), fileimage raw(1000))");
33 $stmt = oci_parse($c, "drop table phptestrawtable");
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_stmt_datatype_change.phpt25 $c1->query("drop table if exists type_change");
26 $c1->query("create table type_change(a int, b char(10)) ENGINE = " . $engine);
41 var_dump($c2->query("alter table type_change drop a"));
64 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
H A Dmysqli_change_user_locks_temporary.phpt2 mysqli_change_user() - table locks, GET_LOCK(), temporary tables
13 require_once('table.inc');
40 printf("[005] There should be some rows in the table test\n");
61 printf("[011] There should be three rows in the table test\n");
69 printf("[012] There should be no table test any more, [%d] %s\n",

Completed in 23 milliseconds

12345678910>>...26