Home
last modified time | relevance | path

Searched refs:dba_insert (Results 1 – 25 of 39) sorted by relevance

12

/PHP-7.4/ext/dba/tests/
H A Dbug70825.phpt13 dba_insert('foo', 23, $db);
14 dba_insert('foo', 42, $db);
15 dba_insert('foo', 1337, $db);
23 dba_insert(['foo', 'bar'], 23, $db);
24 dba_insert(['foo', 'bar'], 42, $db);
33 dba_insert('[foo]bar', 23, $db);
34 dba_insert('[foo]bar', 42, $db);
35 dba_insert('[foo]bar', 1337, $db);
43 dba_insert('[foo]bar', 23, $db);
44 dba_insert('[foo]bar', 42, $db);
[all …]
H A Ddba_cdb_make.phpt17 dba_insert("1", "1", $db_make);
18 dba_insert("2", "2", $db_make);
19 dba_insert("1", "3", $db_make);
20 dba_insert("2", "1", $db_make);
21 dba_insert("3", "3", $db_make);
22 dba_insert("1", "2", $db_make);
23 dba_insert("4", "4", $db_make);
H A Ddba004.phpt13 dba_insert("key1", "Content String 1", $db_file);
14 dba_insert("key2", "Content String 2", $db_file);
15 dba_insert("key3", "Third Content String", $db_file);
16 dba_insert("key4", "Another Content String", $db_file);
17 dba_insert("key5", "The last content string", $db_file);
H A Ddba010.phpt13 dba_insert(array("", "name0") , "Content String 1", $db_file);
14 dba_insert(array("key1", "name1") , "Content String 1", $db_file);
15 dba_insert(array("key2","name2"), "Content String 2", $db_file);
16 dba_insert("[key3]name3", "Third Content String", $db_file);
17 dba_insert(array("key4","name4"), "Another Content String", $db_file);
18 dba_insert(array("key5","name5"), "The last content string", $db_file);
H A Ddba005.phpt13 dba_insert("key1", "Content String 1", $db_file);
14 dba_insert("key2", "Content String 2", $db_file);
15 dba_insert("key3", "Third Content String", $db_file);
16 dba_insert("key4", "Another Content String", $db_file);
17 dba_insert("key5", "The last content string", $db_file);
H A Ddba006.phpt13 dba_insert("key1", "Content String 1", $db_file);
14 dba_insert("key2", "Content String 2", $db_file);
15 dba_insert("key3", "Third Content String", $db_file);
16 dba_insert("key4", "Another Content String", $db_file);
17 dba_insert("key5", "The last content string", $db_file);
H A Ddba_handler.inc7 dba_insert("key1", "Content String 1", $db_file);
8 dba_insert("key2", "Content String 2", $db_file);
9 dba_insert("key3", "Third Content String", $db_file);
10 dba_insert("key4", "Another Content String", $db_file);
11 dba_insert("key5", "The last content string", $db_file);
49 if (dba_insert("key number 6", "The 6th value", $db_writer)) {
54 if (dba_insert("key number 6", "The 6th value inserted again would be an error", $db_writer)) {
H A Ddba_db4_011.phpt15 var_dump(dba_insert("key1", "Content String 1", $db_file));
16 var_dump(dba_insert("key2", "Content String 2", $db_file));
17 var_dump(dba_insert("key2", "Same key", $db_file));
H A Dbug36436.phpt16 dba_insert('X', 'XYZ', $db);
17 dba_insert('Y', '123', $db);
H A Ddba_cdb_001.phpt18 var_dump(dba_insert("key1", "Content String 1", $db_file));
36 dba_insert("key1", "Content String 1", $db_file);
46 dba_insert("key1", "Content String 1", $db_file);
84 Warning: dba_insert(): You cannot perform a modification to a database without proper access in %sd…
H A Ddba_db4_016.phpt19 var_dump(dba_insert("key1", "This is a test insert", $db_file));
33 var_dump(dba_insert("key1", "second open test", $db_file));
34 var_dump(dba_insert("key2", "second open test row 2", $db_file));
H A Dbug38698.phpt19 dba_insert(pack('V',129), "Booo!", $db_make);
21 dba_insert(pack('i',129), "Booo!", $db_make);
H A Ddba009.phpt14 dba_insert("a", "Inserted", $db);
23 dba_insert("a", "Inserted", $db);
H A Ddba013.phpt14 dba_insert(array(), "Content String 1", $db_file);
29 #0 %sdba013.php(6): dba_insert(Array, '%s', Resource id #%d)
H A Ddba_db4_optimize.phpt15 dba_insert("key1", "Content String 1", $db_file);
16 dba_insert("key2", "Content String 2", $db_file);
H A Ddba_db4_sync.phpt15 dba_insert("key1", "Content String 1", $db_file);
16 dba_insert("key2", "Content String 2", $db_file);
H A Ddba014.phpt14 dba_insert(array("a", "b", "c"), "Content String 2", $db_file);
29 #0 %sdba014.php(6): dba_insert(Array, '%s', Resource id #%d)
H A Ddba_db4_013.phpt23 dba_insert("key1", "This is a test insert", $db_file);
40 Warning: dba_insert(): You cannot perform a modification to a database without proper access in %sd…
H A Ddba_optimize.phpt13 dba_insert("key1", "Content String 1", $db_file);
14 dba_insert("key2", "Content String 2", $db_file);
H A Ddba_sync.phpt13 dba_insert("key1", "Content String 1", $db_file);
14 dba_insert("key2", "Content String 2", $db_file);
H A Dbug49125.phpt18 dba_insert('foo', 'foo', $db);
H A Dbug78808.phpt15 dba_insert('key' . $i, $value, $lmdb_h);
H A Dbug72885.phpt14 dba_insert('foo', 'bar', $db);
H A Dbug71514.phpt14 dba_insert('foo', 'value1', $db);
H A Ddba002.phpt13 dba_insert("key1", "This is a test insert", $db_file);

Completed in 32 milliseconds

12