Home
last modified time | relevance | path

Searched refs:insert (Results 26 – 50 of 227) sorted by relevance

12345678910

/PHP-5.3/ext/pdo/tests/
H A Dbug_35671.phpt20 $insert = $db->prepare("insert into test (field1, field2, field3) values (:value1, :value2, :value3…
28 $insert->execute($parm);
29 $insert = null;
/PHP-5.3/ext/spl/tests/
H A Dspl_heap_isempty.phpt11 $h->insert(2);
12 echo "Checking after insert: ";
20 Checking after insert: bool(false)
H A Dheap_top_variation_002.phpt17 // insert 2 elements to hit our overridden compare
18 $h->insert(4);
20 $h->insert(5);
H A Dspl_pq_top_basic.phpt11 $priorityQueue->insert("a", 1);
12 $priorityQueue->insert("b", 2);
13 $priorityQueue->insert("c", 0);
H A Dpqueue_002.phpt14 $h->insert(1, 1);
16 $h->insert(2, 1);
18 $h->insert(3, 1);
25 $h->insert(4, 1);
H A Dheap_004.phpt14 $h->insert(1);
16 $h->insert(2);
18 $h->insert(3);
25 $h->insert(4);
H A Dspl_heap_iteration_error.phpt18 $h->insert(array('foobar'));
19 $h->insert(array('foobar1'));
20 $h->insert(array('foobar2'));
H A Dbug62073.phpt6 $heap->insert(42);
14 $heap->insert(42);
/PHP-5.3/ext/pdo_oci/tests/
H A Dpdo_oci_attr_autocommit_2.phpt25 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 1')");
26 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 2')");
39 $dbh->exec("insert into pdo_ac_tab (col1) values ('not committed #1')");
40 $dbh->exec("insert into pdo_ac_tab (col1) values ('data that is too long to fit and will barf')");
51 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 3')");
66 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 4')");
83 $dbh->exec("insert into pdo_ac_tab (col1) values ('not committed #2')");
85 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 5')");
86 $dbh->exec("insert into pdo_ac_tab (col1) values ('data 6')");
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_fetch_assoc_zerofill.phpt14 function zerofill($offset, $link, $datatype, $insert = 1) {
23 if (!mysqli_query($link, sprintf('UPDATE test SET zero = %s', $insert))) {
40 if ($length > strlen($insert)) {
42 $expected = str_repeat('0', $length - strlen($insert));
43 $expected .= $insert;
H A Dmysqli_stmt_bind_result_zerofill.phpt14 function zerofill($offset, $link, $datatype, $insert = 1) {
23 if (!mysqli_query($link, sprintf('UPDATE test SET zero = %s', $insert))) {
54 if ($length > strlen($insert)) {
56 $expected = str_repeat('0', $length - strlen($insert));
57 $expected .= $insert;
/PHP-5.3/Zend/tests/
H A Dgc_017.phpt16 function insert($node) {
30 $a->insert($b);
31 $a->insert($c);
/PHP-5.3/ext/oci8/tests/
H A Dbind_misccoltypes_errs.phpt48 echo "\nTest 1 insert numbers \n";
58 echo "\nTest 2 insert numbers \n";
89 echo "\nTest 6 - insert a VARCHAR2 with SQLT_BIN\n";
98 echo "\nTest 7 - insert a VARCHAR2 with SQLT_LBI\n";
122 Test 1 insert numbers
131 Test 2 insert numbers
152 Test 6 - insert a VARCHAR2 with SQLT_BIN
161 Test 7 - insert a VARCHAR2 with SQLT_LBI
H A Ddefault_prefetch.phpt17 "insert into default_prefetch_tab (id, value) values (1,1)",
18 "insert into default_prefetch_tab (id, value) values (1,1)",
19 "insert into default_prefetch_tab (id, value) values (1,1)",
H A Ddefault_prefetch0.phpt17 "insert into default_prefetch_tab (id, value) values (1,1)",
18 "insert into default_prefetch_tab (id, value) values (1,1)",
19 "insert into default_prefetch_tab (id, value) values (1,1)",
H A Ddefault_prefetch1.phpt17 "insert into default_prefetch1_tab (id, value) values (1,1)",
18 "insert into default_prefetch1_tab (id, value) values (1,1)",
19 "insert into default_prefetch1_tab (id, value) values (1,1)",
H A Ddefault_prefetch2.phpt17 "insert into default_prefetch2_tab (id, value) values (1,1)",
18 "insert into default_prefetch2_tab (id, value) values (1,1)",
19 "insert into default_prefetch2_tab (id, value) values (1,1)",
H A Dprefetch.phpt15 "insert into prefetch_tab (id, value) values (1,1)",
16 "insert into prefetch_tab (id, value) values (1,1)",
17 "insert into prefetch_tab (id, value) values (1,1)",
H A Dprefetch_old.phpt13 "insert into prefetch_old_tab (id, value) values (1,1)",
14 "insert into prefetch_old_tab (id, value) values (1,1)",
15 "insert into prefetch_old_tab (id, value) values (1,1)",
H A Dfetch_row.phpt15 "insert into fetch_row_tab (id, value) values (1,1)",
16 "insert into fetch_row_tab (id, value) values (1,1)",
17 "insert into fetch_row_tab (id, value) values (1,1)",
H A Dfetch_assoc.phpt13 "insert into fetch_assoc_tab values (1,1,null)",
14 "insert into fetch_assoc_tab values (1,1,null)",
15 "insert into fetch_assoc_tab values (1,1,null)"
H A Dfetch.phpt15 "insert into fetch_tab (id, value) values (1,1)",
16 "insert into fetch_tab (id, value) values (1,1)",
17 "insert into fetch_tab (id, value) values (1,1)",
H A Dbug38173.phpt29 $insert = "INSERT INTO t1 VALUES(".$i.")";
30 $s = oci_parse($c, $insert);
35 $insert = "INSERT INTO t2 VALUES(".$i.")";
36 $s = oci_parse($c, $insert);
H A Dpecl_bug8816.phpt33 $insert = "INSERT INTO t1 VALUES($i, ".$val.")";
34 $s = oci_parse($c, $insert);
39 $insert = "INSERT INTO t2 VALUES($i, ".$val.")";
40 $s = oci_parse($c, $insert);
H A Dcommit_old.phpt17 die("ociparse(insert) failed!\n");
22 die("ociexecute(insert) failed!\n");
48 die("ociparse(insert) failed!\n");
53 die("ociexecute(insert) failed!\n");

Completed in 53 milliseconds

12345678910