Home
last modified time | relevance | path

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

12345678

/php-src/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-src/ext/pdo_dblib/tests/
H A Dbatch_stmt_rowcount.phpt25 // check results from the create table
29 // check results from the set rowcount
33 // check results from the first insert
37 // check results from the second insert
41 // check results from the update
50 // check that there are no more results
61 // check results from set rowcount
65 // check results from the select
70 // check results from the delete
74 // check results from the drop
[all …]
H A Dbatch_stmt_transaction.phpt28 // check results from the create table
32 // check results from the first insert
36 // check results from the select
40 // check results from begin transaction
44 // check results from the update
48 // check results from rollback
52 // check results from the select
57 // check results from the delete
61 // check results from the drop
65 // check that there are no more results
H A Dbatch_stmt_try.phpt31 // check results from the create table
35 // check results from the first insert
39 // check results from the select
43 // check results from try
47 // check results from the update
60 // there should no results from here on
61 // check results from the select
66 // check results from the delete
70 // check results from the drop
74 // check that there are no more results
H A Dbatch_stmt_ins_sel_up_del.phpt27 // check results from the create table
31 // check results from the first insert
35 // check results from the select
39 // check results from the update
43 // check results from the delete
47 // check results from the select
51 // check results from the drop
55 // check that there are no more results
H A Dbatch_stmt_ins_up.phpt24 // check results from the create table
28 // check results from the first insert
32 // check results from the update
36 // check results from the second insert
40 // check results from the drop
44 // check that there are no more results
H A Dbatch_stmt_ins_exec.phpt26 // now lets get some results
33 // check results from the insert
37 // check results from the exec
41 // check results from the drop table
45 // check results from the drop procedure
49 // check that there are no more results
/php-src/ext/pdo_mysql/tests/
H A Dgh11587.phpt36 $results = $db->query('SELECT * FROM test_11587');
37 foreach ($results as $result) {
46 $results = $db->query('SELECT * FROM test_11587');
47 foreach ($results as $result) {
56 $results = $db->query('SELECT * FROM test_11587');
57 foreach ($results as $result) {
66 $results = $db->query('SELECT * FROM test_11587');
67 foreach ($results as $result) {
/php-src/ext/bcmath/tests/
H A Dbcround_early_return.phpt40 $results = [
53 $results['PHP_ROUND_HALF_UP'][] = $result;
61 $results[$mode][] = $result;
64 if ($results['PHP_ROUND_HALF_UP'] === $results[$mode]) {

Completed in 27 milliseconds

12345678