Home
last modified time | relevance | path

Searched refs:insert (Results 1 – 25 of 252) sorted by last modified time

1234567891011

/PHP-7.4/Zend/tests/
H A Dunset_prop_recursion.phpt8 function insert(Node $node) {
19 $a->insert(new Node);
20 $a->insert(new Node);
/PHP-7.4/ext/pdo_firebird/tests/
H A Dbug_aaa.phpt14 $S = $dbh->prepare('insert into ta_table (id) values (:id) returning id');
H A Dbug_62024.phpt2 Bug #62024 Cannot insert second row with null using parametrized query (Firebird PDO)
20 $sql = "insert into test_insert (id, text) values (?, ?)";
H A Dbug_72583.phpt13 $dbh->exec('insert into atable values (1, -1)');
H A Dbug_72931.phpt13 $S = $dbh->prepare('insert into tablea (id) values (1) returning id');
H A Dbug_73087.phpt13 $S = $dbh->prepare('insert into atable (id, content) values (:id, :content)');
H A Dbug_74462.phpt13 $dbh->exec('insert into atable (id, abool) values (1, true)');
14 $dbh->exec('insert into atable (id, abool) values (2, false)');
15 $dbh->exec('insert into atable (id, abool) values (3, null)');
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_inference.c2051 uint32_t zend_array_element_type(uint32_t t1, int write, int insert) in zend_array_element_type() argument
2064 if (insert) { in zend_array_element_type()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_bit.phpt108 printf("%10s %64s\n%10s %64s\n", '_bin', $row['_bin'], 'insert', $bin);
H A Dmysqli_stmt_get_result_types.phpt233 …// Note: you cannot insert any blob values this way. But you can check the API at least partly thi…
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)) {
H A Dmysqli_stmt_bind_param.phpt293 …// Note: you cannot insert any blob values this way. But you can check the API at least partly thi…
H A Dmysqli_stmt_bind_result.phpt275 …// Note: you cannot insert any blob values this way. But you can check the API at least partly thi…
H A Dmysqli_stmt_bind_result_format.phpt40 printf("[%03d] Cannot insert data, [%d] %s\n",
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;
H A Dmysqli_stmt_datatype_change.phpt27 $c1->query("insert into type_change values (1, 'one'), (2, 'two')");
H A Dmysqli_insert_id.phpt77 between the second last insert and the lock, therefore don't stop just bail
87 Note: For a multiple-row insert, LAST_INSERT_ID() and mysql_insert_id() actually
H A Dmysqli_insert_id_variation.phpt22 printf("[001] Got no valid insert id: %s", var_export($i, true));
H A Dmysqli_last_insert_id.phpt154 /* API insert id will be 101 because of UPDATE, SQL unchanged */
H A Dmysqli_info.phpt25 // NOTE: empty string, no multiple insert syntax
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_fetch_assoc_bit.phpt96 printf("%10s %64s\n%10s %64s\n", '_bin', $row['_bin'], 'insert', $bin);
H A Dmysqli_get_client_stats.phpt862 printf("[%03d] Cannot insert new records, [%d] %s\n", ++$test_counter,
H A Dbug66124.phpt44 echo "insert id:{$id}=>{$stmt->insert_id}\n";
74 echo "insert id:{$id}\n";
96 insert id:1311200011005001566=>1311200011005001566
99 insert id:1311200011005001566
H A Dbug52891.phpt44 /* first insert normal value to force initial send of types */

Completed in 65 milliseconds

1234567891011