Home
last modified time | relevance | path

Searched refs:insert (Results 76 – 100 of 227) sorted by relevance

12345678910

/PHP-5.3/ext/oci8/tests/
H A Dbug40415.phpt31 $insert = "INSERT INTO t1 VALUES(1".$i.")";
32 $s = oci_parse($c, $insert);
37 $insert = "INSERT INTO t2 VALUES(2".$i.")";
38 $s = oci_parse($c, $insert);
H A Dlob_null.phpt24 insert into lob_null_tab (id, data) values (pid, pdata);
38 $s = oci_parse($c, "insert into lob_null_tab values (1, :b)");
52 $s = oci_parse($c, "insert into lob_null_tab values (2, :b)");
66 $s = oci_parse($c, "insert into lob_null_tab values (3, :b)");
126 $s = oci_parse($c, "insert into lob_null_tab values (7, empty_clob()) returning data into :b");
133 $s = oci_parse($c, "insert into lob_null_tab values (8, empty_clob()) returning data into :b");
140 $s = oci_parse($c, "insert into lob_null_tab values (9, empty_clob()) returning data into :b");
H A Dlob_029.phpt46 $s = oci_parse($c, "insert into FileTest (FileNum, FileDesc, Image) values (1, 'Description 1', bfi…
49 $s = oci_parse($c, "insert into FileTest (FileNum, FileDesc, Image) values (2, 'Description 2', bfi…
52 $s = oci_parse($c, "insert into FileTest (FileNum, FileDesc, Image) values (3, 'Description 3', bfi…
73 $s = oci_parse($c, "insert into FileTest (FileNum, FileDesc, Image) values (2, 'Description 2', bfi…
H A Dfetch_object_1.phpt18 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')",
19 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')",
20 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')",
H A Dlob_018.phpt24 $init = "insert into lob_018_tab (mykey, lob_1) values(1, empty_clob()) returning lob_1 into :mylob…
33 $init = "insert into lob_018_tab (mykey, lob_1) values(2, empty_clob()) returning lob_1 into :mylob…
65 $init = "insert into lob_018_tab (mykey, lob_1) values(3, empty_clob()) returning lob_1 into :mylob…
H A Dcursors.phpt17 die("oci_parse(insert) failed!\n");
22 die("oci_execute(insert) failed!\n");
H A Dfetch_object.phpt18 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')",
19 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')",
20 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')",
H A Dbind_query.phpt15 "insert into bind_query_tab values (7934, 'MILLER', 1300)",
16 "insert into bind_query_tab values (7902, 'FORD', 3000)"
H A Dconnect_scope1.phpt36 $s = oci_parse($c, "insert into connect_scope1_tab values (1)");
50 // insert 2nd row on returned statement, committing both rows
H A Dconnect_scope2.phpt36 $s = oci_parse($c, "insert into connect_scope2_tab values (1)");
50 // insert 2nd row on returned statement, committing both rows
H A Dlob_037.phpt14 /* insert the first LOB */
31 /* insert the second LOB */
H A Dbind_long.phpt21 $stmt = oci_parse ($c, "insert into phptestlng (id, filetxt) values (:id, :filetxt)");
40 $stmt = oci_parse ($c, "insert into phptestlng (id, filetxt) values (:id, :filetxt)");
H A Dbind_rowid.phpt23 "insert into rid_tab (id, address) values (1, 'original text #1')",
24 "insert into rid_tab (id, address) values (2, 'original text #2')"
H A Ddefine5.phpt15 "insert into define5_tab (id, string) values (1, 'some')",
16 "insert into define5_tab (id, string) values (2, 'thing')",
H A Ddupcolnames.phpt19 "insert into dupcolnames_tab1 (c1, dupnamecol) values (1, 'chris')",
20 "insert into dupcolnames_tab2 (c2, dupnamecol) values (2, 'jones')",
H A Dfetch_into2.phpt17 die("oci_parse(insert) failed!\n");
22 die("oci_execute(insert) failed!\n");
/PHP-5.3/ext/sqlite3/tests/
H A Dsqlite3_30_blobopen.phpt15 echo "PREPARING insert\n";
37 PREPARING insert
H A Dsqlite3_09_blob_bound_param.phpt15 echo "PREPARING insert\n";
44 PREPARING insert
/PHP-5.3/ext/sybase_ct/tests/
H A Dbug43578.phpt23 var_dump(sybase_query('insert into #Resource values (123, NULL)', $db));
24 var_dump(sybase_query('insert into #Resource values (124, "")', $db));
/PHP-5.3/ext/standard/tests/general_functions/
H A D003.phpt34 $n += test_me("inexpensive insert", 2, "11", "2121", 1, 1, 1);
35 $n += test_me("expensive insert" , 10, "11", "2121", 5, 1, 1);
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_stmt_bind_limits.phpt17 $insert = "INSERT INTO test";
35 $insert .= "(" . substr($columns, 0, -2) . ") VALUES ";
36 $insert .= substr(str_repeat("(" . $values . "), ", $rows), 0, -2);
48 if (!$stmt = $link->prepare($insert)) {
/PHP-5.3/ext/spl/tests/
H A Dheap_012.phpt6 $a->insert($a);
H A Dheap_005.phpt11 $h->insert($i);
H A Dheap_006.phpt11 $h->insert($i);
/PHP-5.3/ext/pcre/tests/
H A Dbug41050.phpt7 $regex = '/(insert|drop|create|select|delete|update)([^;\']*('."('[^']*')+".')?)*(;|$)/i';

Completed in 28 milliseconds

12345678910