/PHP-5.3/ext/spl/tests/ |
H A D | heap_011.phpt | 11 $h->insert(1); 12 $h->insert(6); 13 $h->insert(5); 14 $h->insert(2); 23 $h->insert(1); 24 $h->insert(6); 25 $h->insert(5); 26 $h->insert(2);
|
H A D | pqueue_001.phpt | 14 $pq->insert("a", 1); 15 $pq->insert("b", 2); 16 $pq->insert("c", 0); 27 $pq1->insert("a", 1); 28 $pq1->insert("b", 2); 29 $pq1->insert("c", 0); 40 $pq2->insert("a", 1); 41 $pq2->insert("b", 2); 42 $pq2->insert("c", 0); 53 $pq3->insert("a", 1); [all …]
|
H A D | spl_priorityqeue_insert_two_params_error.phpt | 2 SPL: priorityQueue paramter test on insert method 13 var_dump($testHeap->insert()); 14 var_dump($testHeap->insert('test')); 15 var_dump($testHeap->insert('test', 'test')); 16 var_dump($testHeap->insert('test', 'test', 'test')); 22 Warning: SplPriorityQueue::insert() expects exactly 2 parameters, 0 given in %s on line 7 25 Warning: SplPriorityQueue::insert() expects exactly 2 parameters, 1 given in %s on line 8 29 Warning: SplPriorityQueue::insert() expects exactly 2 parameters, 3 given in %s on line 10
|
H A D | heap_002.phpt | 15 $h->insert(1); 16 $h->insert(2); 17 $h->insert(3); 18 $h->insert(3); 19 $h->insert(3); 32 $h->insert($b);
|
H A D | heap_001.phpt | 15 $h->insert(1); 16 $h->insert(2); 17 $h->insert(3); 18 $h->insert(3); 19 $h->insert(3); 32 $h->insert($b);
|
H A D | heap_010.phpt | 6 $obj->insert(1); 7 $obj->insert(2); 15 $obj->insert(1); 16 $obj->insert(2);
|
H A D | heap_008.phpt | 7 $h->insert(1); 8 $h->insert(5); 9 $h->insert(0); 10 $h->insert(4);
|
H A D | heap_007.phpt | 7 $h->insert(1); 8 $h->insert(5); 9 $h->insert(0); 10 $h->insert(4);
|
H A D | pqueue_003.phpt | 7 $h->insert(1, 1); 8 $h->insert(5, 5); 9 $h->insert(0, 0); 10 $h->insert(4, 4);
|
H A D | pqueue_004.phpt | 7 $pq->insert("a", 0); 8 $pq->insert("b", 1); 9 $pq->insert("c", 5); 10 $pq->insert("d", -2);
|
H A D | spl_heap_insert_basic.phpt | 2 SPL: SplHeap, Test method to insert into heap 17 $heap->insert(1,2); 20 Warning: SplHeap::insert() expects exactly 1 parameter, %s
|
H A D | SplHeap_insert_invalid_parameter.phpt | 2 Check that SplHeap::insert generate a warning and returns NULL when $value is missing 10 var_dump($h->insert()); 14 Warning: SplHeap::insert() expects exactly 1 parameter, 0 given in %s on line %d
|
H A D | SplPriorityQueue_insert_invalid_parameter.phpt | 2 Check that SplPriorityQueue::insert generate a warning and returns NULL when rubbish params are pas… 10 var_dump($h->insert(NULL)); 14 Warning: SplPriorityQueue::insert() expects exactly 2 parameters, 1 given in %s on line %d
|
H A D | heap_corruption.phpt | 38 $heap->insert(1); 39 $heap->insert(2); 40 $heap->insert(3); 41 $heap->insert(4);
|
/PHP-5.3/ext/oci8/tests/ |
H A D | bind_sqltchr_1.phpt | 46 echo "\nTEST242 insert numbers SQLT_CHR\n"; 82 echo "\nTEST246 insert numbers\n"; 148 TEST242 insert numbers SQLT_CHR 157 TEST243 insert numbers, SQLT_CHR 166 TEST244 insert numbers with SQLT_CHR 175 TEST245 insert numbers with SQLT_CHR 184 TEST246 insert numbers 193 TEST247 insert numbers with SQLT_CHR 202 TEST248 insert numbers with SQLT_CHR 211 TEST249 insert numbers with SQLT_CHR [all …]
|
H A D | bind_number.phpt | 53 echo "\nTEST66 insert a float\n"; 80 echo "\nTEST71 insert a decimal\n"; 98 echo "\nTEST73 insert a double\n"; 147 TEST66 insert a float 156 TEST67 insert a binary float 165 TEST69 insert a binary double 174 TEST71 insert a decimal 183 TEST72 insert a decimal 192 TEST73 insert a double 201 TEST75 insert a INTEGER [all …]
|
H A D | bind_sqltint.phpt | 45 echo "\nTEST142 insert numbers SQLT_INT\n"; 81 echo "\nTEST146 insert numbers\n"; 229 TEST142 insert numbers SQLT_INT 238 TEST143 insert numbers, SQLT_INT 247 TEST144 insert numbers with SQLT_INT 256 TEST145 insert numbers with SQLT_INT 265 TEST146 insert numbers 274 TEST147 insert numbers with SQLT_INT 283 TEST148 insert numbers with SQLT_INT 292 TEST149 insert numbers with SQLT_INT [all …]
|
H A D | bind_misccoltypes.phpt | 187 echo "\nTEST52 insert numbers\n"; 253 echo "\nTEST60 insert a date\n"; 277 TEST86 insert all ORATYPE values 298 TEST52 insert numbers 307 TEST53 insert numbers 316 TEST54 insert numbers 325 TEST55 insert numbers 334 TEST56 insert numbers 343 TEST58 insert a VARCHAR2 352 TEST59 insert a VARCHAR2 [all …]
|
H A D | commit_001.phpt | 14 $insert_sql = "insert into ".$schema.$table_name." (id, value) values (1,1)"; 17 die("oci_parse(insert) failed!\n"); 23 die("oci_execute(insert) failed!\n"); 29 die("oci_execute(insert) failed!\n"); 54 $insert_sql = "insert into ".$schema.$table_name." (id, value) values (1,1)"; 57 die("oci_parse(insert) failed!\n"); 62 die("oci_execute(insert) failed!\n");
|
/PHP-5.3/ext/pdo_pgsql/tests/ |
H A D | copy_from.phpt | 129 string(13) "test insert 0" 131 string(13) "test insert 0" 143 string(13) "test insert 1" 145 string(13) "test insert 1" 157 string(13) "test insert 2" 159 string(13) "test insert 2" 173 string(13) "test insert 0" 175 string(13) "test insert 0" 187 string(13) "test insert 1" 189 string(13) "test insert 1" [all …]
|
H A D | copy_to.phpt | 78 string(19) "0 test insert 0 \N 81 string(19) "1 test insert 1 \N 84 string(19) "2 test insert 2 \N 90 string(21) "0;test insert 0;NULL 93 string(21) "1;test insert 1;NULL 115 0 test insert 0 \N 116 1 test insert 1 \N 117 2 test insert 2 \N 120 0;test insert 0;NULL 121 1;test insert 1;NULL [all …]
|
/PHP-5.3/ext/sybase_ct/tests/ |
H A D | test_long.phpt | 20 // Create table and insert some values 22 var_dump(sybase_query('insert test_long values ('.(LONG_MAX - 1).')')); 23 var_dump(sybase_query('insert test_long values ('.(LONG_MAX).')')); 24 var_dump(sybase_query('insert test_long values ('.(LONG_MAX + 1).')')); 25 var_dump(sybase_query('insert test_long values ('.(LONG_MIN + 1).')')); 26 var_dump(sybase_query('insert test_long values ('.(LONG_MIN).')')); 27 var_dump(sybase_query('insert test_long values ('.(LONG_MIN - 1).')'));
|
/PHP-5.3/ext/dba/tests/ |
H A D | dba015.phpt | 18 dba_insert("key1", "This is a test insert 1", $db_file1); 32 dba_insert("key2", "This is a test insert 2", $db_file2); 61 This is a test insert 1 65 This is a test insert 1 66 This is a test insert 2 68 This is a test insert 1 69 This is a test insert 2 74 This is a test insert 1 75 This is a test insert 2
|
H A D | dba_db4_018.phpt | 18 dba_insert("key1", "This is a test insert 1", $db_file1); 32 dba_insert("key2", "This is a test insert 2", $db_file2); 61 This is a test insert 1 65 This is a test insert 1 66 This is a test insert 2 68 This is a test insert 1 69 This is a test insert 2 74 This is a test insert 1 75 This is a test insert 2
|
/PHP-5.3/ext/pdo/tests/ |
H A D | bug_34630.phpt | 36 …$insert = $db->prepare("insert into test (id, val) values (1, EMPTY_BLOB()) RETURNING val INTO :bl… 38 $insert = $db->prepare("insert into test (id, val) values (1, :blob)"); 40 $insert->bindValue(':blob', $fp, PDO::PARAM_LOB); 41 $insert->execute(); 42 $insert = null;
|