/PHP-8.2/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_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_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_11_numrows.phpt | 27 echo "SELECTING results\n"; 28 $results = $db->query("SELECT * FROM test ORDER BY id ASC"); 30 var_dump($results->numRows()); 31 $results->finalize(); 43 SELECTING results
|
H A D | sqlite3_bound_value_at_name.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_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)) 31 var_dump($results->numColumns()); 43 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-8.2/ext/pdo_dblib/tests/ |
H A D | batch_stmt_rowcount.phpt | 24 // check results from the create table 28 // check results from the set rowcount 32 // check results from the first insert 36 // check results from the second insert 40 // check results from the update 49 // check that there are no more results 60 // check results from set rowcount 64 // check results from the select 69 // check results from the delete 73 // check results from the drop [all …]
|
H A D | batch_stmt_transaction.phpt | 27 // check results from the create table 31 // check results from the first insert 35 // check results from the select 39 // check results from begin transaction 43 // check results from the update 47 // check results from rollback 51 // check results from the select 56 // check results from the delete 60 // check results from the drop 64 // check that there are no more results
|
H A D | batch_stmt_try.phpt | 30 // check results from the create table 34 // check results from the first insert 38 // check results from the select 42 // check results from try 46 // check results from the update 59 // there should no results from here on 60 // check results from the select 65 // check results from the delete 69 // check results from the drop 73 // check that there are no more results
|
H A D | batch_stmt_ins_sel_up_del.phpt | 25 // check results from the create table 29 // check results from the first insert 33 // check results from the select 37 // check results from the update 41 // check results from the delete 45 // check results from the select 49 // check results from the drop 53 // check that there are no more results
|
H A D | batch_stmt_ins_up.phpt | 23 // check results from the create table 27 // check results from the first insert 31 // check results from the update 35 // check results from the second insert 39 // check results from the drop 43 // check that there are no more results
|
H A D | batch_stmt_ins_exec.phpt | 25 // now lets get some results 32 // check results from the insert 36 // check results from the exec 40 // check results from the drop table 44 // check results from the drop procedure 48 // check that there are no more results
|
/PHP-8.2/ext/pdo_mysql/tests/ |
H A D | gh-11587.phpt | 38 $results = $db->query('SELECT * FROM test'); 39 foreach ($results as $result) { 48 $results = $db->query('SELECT * FROM test'); 49 foreach ($results as $result) { 58 $results = $db->query('SELECT * FROM test'); 59 foreach ($results as $result) { 68 $results = $db->query('SELECT * FROM test'); 69 foreach ($results as $result) {
|
/PHP-8.2/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",
|