Home
last modified time | relevance | path

Searched refs:results (Results 1 – 25 of 187) sorted by relevance

12345678

/PHP-8.2/ext/sqlite3/tests/
H A Dsqlite3_04_update.phpt18 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 Dsqlite3_05_delete.phpt18 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 Dsqlite3_16_select_no_results.phpt2 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 Dsqlite3_27_reset_prepared_stmt_result.phpt2 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 Dsqlite3_28_clear_bindings.phpt2 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 Dsqlite3_26_reset_prepared_stmt.phpt18 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 Dsqlite3_03_insert.phpt18 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 Dsqlite3_23_escape_string.phpt18 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 Dsqlite3_07_prepared_stmt.phpt18 echo "SELECTING results\n";
23 $results = $stmt->execute();
24 while ($result = $results->fetchArray(SQLITE3_NUM))
28 $results->finalize();
40 SELECTING results
H A Dsqlite3_08_udf.phpt26 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 Dsqlite3_06_prepared_stmt.phpt18 echo "SELECTING results\n";
24 $results = $stmt->execute();
25 while ($result = $results->fetchArray(SQLITE3_NUM))
29 $results->finalize();
41 SELECTING results
H A Dsqlite3_11_numrows.phpt27 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 Dsqlite3_bound_value_at_name.phpt18 echo "SELECTING results\n";
23 $results = $stmt->execute();
24 while ($result = $results->fetchArray(SQLITE3_NUM))
28 $results->finalize();
40 SELECTING results
H A Dsqlite3_09_blob_bound_param.phpt29 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 Dsqlite3_10_bound_value_name.phpt18 echo "SELECTING results\n";
25 $results = $stmt->execute();
26 while ($result = $results->fetchArray(SQLITE3_NUM))
30 $results->finalize();
42 SELECTING results
H A Dsqlite3_12_unfinalized_stmt_cleanup.phpt18 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 Dsqlite3_13_skip_all_cleanup.phpt18 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 Dbatch_stmt_rowcount.phpt24 // 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 Dbatch_stmt_transaction.phpt27 // 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 Dbatch_stmt_try.phpt30 // 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 Dbatch_stmt_ins_sel_up_del.phpt25 // 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 Dbatch_stmt_ins_up.phpt23 // 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 Dbatch_stmt_ins_exec.phpt25 // 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 Dgh-11587.phpt38 $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 Dmysqli_fetch_array_many_rows.phpt28 // 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",

Completed in 22 milliseconds

12345678