/PHP-7.3/ext/sqlite3/tests/ |
H A D | sqlite3_04_update.phpt | 18 echo "SELECTING results\n"; 19 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 20 while ($result = $results->fetchArray(SQLITE3_NUM)) 24 $results->finalize(); 26 echo "UPDATING results\n"; 29 echo "Checking results\n"; 31 while ($result = $results->fetchArray(SQLITE3_NUM)) 35 $results->finalize(); 47 SELECTING results 60 UPDATING results [all …]
|
H A D | sqlite3_05_delete.phpt | 18 echo "SELECTING results\n"; 19 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 20 while ($result = $results->fetchArray(SQLITE3_NUM)) 24 $results->finalize(); 29 echo "Checking results\n"; 30 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 31 while ($result = $results->fetchArray(SQLITE3_NUM)) 35 $results->finalize(); 47 SELECTING results 62 Checking results
|
H A D | sqlite3_16_select_no_results.phpt | 2 SQLite3::query SELECT with no results 14 echo "SELECTING results\n"; 15 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 16 while ($result = $results->fetchArray(SQLITE3_NUM)) 20 $results->finalize(); 29 SELECTING results
|
H A D | sqlite3_27_reset_prepared_stmt_result.phpt | 2 SQLite3::reset prepared statement results 18 echo "SELECTING results\n"; 24 $results = $stmt->execute(); 25 while ($result = $results->fetchArray(SQLITE3_NUM)) { 28 $results->reset(); 29 while ($result = $results->fetchArray(SQLITE3_NUM)) { 32 $results->finalize(); 44 SELECTING results
|
H A D | sqlite3_28_clear_bindings.phpt | 2 SQLite3_stmt::clear prepared statement results 18 echo "SELECTING results\n"; 24 $results = $stmt->execute(); 25 while ($result = $results->fetchArray(SQLITE3_NUM)) { 31 $results = $stmt->execute(); 32 while ($result = $results->fetchArray(SQLITE3_NUM)) { 35 $results->finalize(); 47 SELECTING results
|
H A D | sqlite3_26_reset_prepared_stmt.phpt | 18 echo "SELECTING results\n"; 24 $results = $stmt->execute(); 25 while ($result = $results->fetchArray(SQLITE3_NUM)) { 29 while ($result = $results->fetchArray(SQLITE3_NUM)) { 32 $results->finalize(); 44 SELECTING results
|
H A D | sqlite3_03_insert.phpt | 18 echo "SELECTING results\n"; 19 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 20 while ($result = $results->fetchArray(SQLITE3_NUM)) 24 $results->finalize(); 36 SELECTING results
|
H A D | sqlite3_23_escape_string.phpt | 18 echo "SELECTING results\n"; 19 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 20 while ($result = $results->fetchArray(SQLITE3_NUM)) 24 $results->finalize(); 36 SELECTING results
|
H A D | sqlite3_06_prepared_stmt.phpt | 18 echo "SELECTING results\n"; 24 $results = $stmt->execute(); 25 while ($result = $results->fetchArray(SQLITE3_NUM)) 29 $results->finalize(); 41 SELECTING results
|
H A D | sqlite3_07_prepared_stmt.phpt | 18 echo "SELECTING results\n"; 23 $results = $stmt->execute(); 24 while ($result = $results->fetchArray(SQLITE3_NUM)) 28 $results->finalize(); 40 SELECTING results
|
H A D | sqlite3_08_udf.phpt | 26 echo "SELECTING results\n"; 27 $results = $db->query("SELECT my_udf_md5(id) FROM test ORDER BY id ASC"); 28 while ($result = $results->fetchArray(SQLITE3_NUM)) 32 $results->finalize(); 46 SELECTING results
|
H A D | sqlite3_11_numrows.phpt | 25 echo "SELECTING results\n"; 26 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 28 var_dump($results->numRows()); 29 $results->finalize(); 41 SELECTING results
|
H A D | sqlite3_09_blob_bound_param.phpt | 29 echo "SELECTING results\n"; 30 $results = $db->query("SELECT id, quote(data) AS data FROM test ORDER BY id ASC"); 31 while ($result = $results->fetchArray(SQLITE3_NUM)) 35 $results->finalize(); 52 SELECTING results
|
H A D | sqlite3_10_bound_value_name.phpt | 18 echo "SELECTING results\n"; 25 $results = $stmt->execute(); 26 while ($result = $results->fetchArray(SQLITE3_NUM)) 30 $results->finalize(); 42 SELECTING results
|
H A D | sqlite3_12_unfinalized_stmt_cleanup.phpt | 18 echo "SELECTING results\n"; 19 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 20 while ($result = $results->fetchArray(SQLITE3_NUM)) 30 var_dump($results->numColumns()); 39 SELECTING results
|
H A D | sqlite3_13_skip_all_cleanup.phpt | 18 echo "SELECTING results\n"; 19 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 20 while ($result = $results->fetchArray(SQLITE3_NUM)) 32 SELECTING results
|
/PHP-7.3/ext/pdo_dblib/tests/ |
H A D | batch_stmt_rowcount.phpt | 23 // check results from the create table 27 // check results from the set rowcount 31 // check results from the first insert 35 // check results from the second insert 39 // check results from the update 48 // check that there are no more results 59 // check results from set rowcount 63 // check results from the select 68 // check results from the delete 72 // check results from the drop [all …]
|
H A D | batch_stmt_transaction.phpt | 26 // check results from the create table 30 // check results from the first insert 34 // check results from the select 38 // check results from begin transaction 42 // check results from the update 46 // check results from rollback 50 // check results from the select 55 // check results from the delete 59 // check results from the drop 63 // check that there are no more results
|
H A D | batch_stmt_try.phpt | 29 // check results from the create table 33 // check results from the first insert 37 // check results from the select 41 // check results from try 45 // check results from the update 58 // there should no results from here on 59 // check results from the select 64 // check results from the delete 68 // check results from the drop 72 // check that there are no more results
|
H A D | batch_stmt_ins_sel_up_del.phpt | 24 // check results from the create table 28 // check results from the first insert 32 // check results from the select 36 // check results from the update 40 // check results from the delete 44 // check results from the select 48 // check results from the drop 52 // check that there are no more results
|
H A D | batch_stmt_ins_up.phpt | 22 // check results from the create table 26 // check results from the first insert 30 // check results from the update 34 // check results from the second insert 38 // check results from the drop 42 // check that there are no more results
|
H A D | batch_stmt_ins_exec.phpt | 24 // now lets get some results 31 // check results from the insert 35 // check results from the exec 39 // check results from the drop table 43 // check results from the drop procedure 47 // check that there are no more results
|
/PHP-7.3/ext/fileinfo/tests/ |
H A D | finfo_file_002.phpt | 9 $results = array(); 13 $results["$filename"] = finfo_file($fp, $filename); 16 ksort($results); 18 var_dump($results);
|
/PHP-7.3/Zend/tests/ |
H A D | list_keyed_conversions.phpt | 6 $results = [ 12 list(NULL => $NULL, 1.5 => $float, FALSE => $FALSE, TRUE => $TRUE) = $results; 17 list("0" => $zeroString, "1" => $oneString) = $results;
|
/PHP-7.3/ext/mysqli/tests/ |
H A D | mysqli_fetch_array_many_rows.phpt | 28 // overwrite results and check if the cache magic works 38 $results = array(); 42 $results[$i++] = &$row; 44 $results = array(); 78 // overwrite results and check if the cache magic works 96 // overwrite results and check if the cache magic works 103 printf("[011] Expecting %d results, got %d results, [%d] %s\n",
|