/php-src/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_limits.phpt | 16 function bind_many($offset, $link, $num_params, $rows, $eval = true) { 30 for ($j = 0; $j < $rows; $j++) 31 $params[($j * $rows) + $i] = $i; 35 $stmt_types = str_repeat("i", $num_params * $rows); 43 printf("Testing %d columns with %d rows...\n", $num_params, $rows); 55 if ($stmt->param_count != $num_params * $rows) { 68 for ($i = 0; $i < $rows; $i++) 70 $param_ref[] = &$params[($i * $rows) + $j]; 77 if ($stmt->param_count != $num_params * $rows) { 122 Testing 273 columns with 240 rows... [all …]
|
H A D | mysqli_result_references_mysqlnd.phpt | 35 $rows = array(); 37 $rows[$i] = mysqli_fetch_assoc($res); 38 $references[$idx]['row_ref'] = &$rows[$i]; 39 $references[$idx]['row_copy'] = $rows[$i]; 40 $references[$idx]['id_ref'] = &$rows[$i]['id']; 41 $references[$idx]['id_copy'] = $rows[$i]['id']; 43 $references[$idx]['id_copy_mod']= $rows[$i]['id'] + 0;
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_commit.phpt | 53 $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); 54 if (!isset($rows[0]['label']) || ($rows[0]['label'] != 'z')) { 55 printf("[006] Record data is strange, dumping rows\n"); 56 var_dump($rows); 74 $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); 75 if (!isset($rows[0]['label']) || ($rows[0]['label'] != 'z')) { 76 printf("[009] Record data is strange, dumping rows\n"); 77 var_dump($rows);
|
H A D | pdo_mysql_prepare_emulated_myisam_index.phpt | 109 printf("[074] Expecting two rows, got %d rows\n", $tmp); 135 printf("[080] Expecting zero rows, got %d rows\n", $tmp); 142 printf("[082] Expecting two rows, got %d rows\n", $tmp); 147 printf("[084] Expecting one row, got %d rows\n", $tmp); 152 printf("[086] Expecting no rows, got %d rows\n", $tmp);
|
/php-src/ext/pgsql/tests/ |
H A D | 23sync_query_params.phpt | 20 if (!($rows = pg_num_rows($result))) 24 for ($i=0; $i < $rows; $i++) 28 for ($i=0; $i < $rows; $i++) 32 for ($i=0; $i < $rows; $i++) 36 for ($i=0; $i < $rows; $i++)
|
H A D | 24sync_query_prepared.phpt | 23 if (!($rows = pg_num_rows($result))) 27 for ($i=0; $i < $rows; $i++) 31 for ($i=0; $i < $rows; $i++) 35 for ($i=0; $i < $rows; $i++) 39 for ($i=0; $i < $rows; $i++)
|
H A D | 25async_query_params.phpt | 30 if (!($rows = pg_num_rows($result))) { 33 for ($i=0; $i < $rows; $i++) 37 for ($i=0; $i < $rows; $i++) 41 for ($i=0; $i < $rows; $i++) 45 for ($i=0; $i < $rows; $i++)
|
H A D | 32nb_async_query.phpt | 36 if (!($rows = pg_num_rows($result))) { 39 for ($i=0; $i < $rows; $i++) { 42 for ($i=0; $i < $rows; $i++) { 45 for ($i=0; $i < $rows; $i++) { 48 for ($i=0; $i < $rows; $i++) {
|
H A D | 30nb_async_query_params.phpt | 35 if (!($rows = pg_num_rows($result))) { 38 for ($i=0; $i < $rows; $i++) { 41 for ($i=0; $i < $rows; $i++) { 44 for ($i=0; $i < $rows; $i++) { 47 for ($i=0; $i < $rows; $i++) {
|
H A D | 04async_query.phpt | 29 if (!($rows = pg_num_rows($result))) { 32 for ($i=0; $i < $rows; $i++) 36 for ($i=0; $i < $rows; $i++) 40 for ($i=0; $i < $rows; $i++) 44 for ($i=0; $i < $rows; $i++)
|
H A D | 06_bug73498.phpt | 19 $rows = pg_copy_to($db, "(SELECT * FROM {$view_name})"); 21 var_dump(gettype($rows)); 22 var_dump(count($rows) > 0);
|
H A D | 26async_query_prepared.phpt | 44 if (!($rows = pg_num_rows($result))) { 47 for ($i=0; $i < $rows; $i++) 51 for ($i=0; $i < $rows; $i++) 55 for ($i=0; $i < $rows; $i++) 59 for ($i=0; $i < $rows; $i++)
|
H A D | 06copy.phpt | 16 $rows = pg_copy_to($db, $table_name); 20 pg_copy_from($db, $table_name, $rows);
|
H A D | 31nb_async_query_prepared.phpt | 50 if (!($rows = pg_num_rows($result))) { 53 for ($i=0; $i < $rows; $i++) { 56 for ($i=0; $i < $rows; $i++) { 59 for ($i=0; $i < $rows; $i++) { 62 for ($i=0; $i < $rows; $i++) {
|
/php-src/ext/pdo/tests/ |
H A D | pdo_017.phpt | 51 return "Counted $res rows after $action.\n"; 77 Counted 3 rows after insert. 78 Counted 0 rows after delete. 79 Counted 3 rows after rollback. 80 Counted 0 rows after delete. 81 Counted 0 rows after commit.
|
H A D | pdo_021.phpt | 43 echo 'There are ' . $num . " rows in the table.\n"; 54 echo 'There are ' . $num . " rows in the table.\n"; 65 There are 6 rows in the table. 66 There are 12 rows in the table.
|
/php-src/ext/pdo_dblib/tests/ |
H A D | bug_38955.phpt | 16 /*We see these rows */ 25 /*We don't see these rows */ 34 $rows = $rs->fetchAll(PDO::FETCH_ASSOC); 35 var_dump($rows);
|
H A D | bug_68957.phpt | 19 $rows = $stmt->fetchAll(); 20 print_r($rows);
|
/php-src/ext/pdo_firebird/tests/ |
H A D | bug_64037.phpt | 25 $rows = $stmt->fetchAll(); 26 var_dump($rows[0]['COST']); 27 var_dump($rows[1]['COST']); 28 var_dump($rows[2]['COST']);
|
H A D | bug_53280.phpt | 24 $rows = $stmth2->fetchAll(); // <------ OK 25 var_dump($rows); 29 $rows = $stmth1->fetchAll(); // <------- segfault 30 var_dump($rows);
|
/php-src/ext/standard/tests/array/ |
H A D | array_column_variant.phpt | 6 $rows = array( 12 var_dump(array_column($rows, null, 'id')); 15 var_dump(array_column($rows, null, 'foo')); 18 var_dump(array_column($rows, null));
|
/php-src/ext/sqlite3/tests/ |
H A D | sqlite3_11_numrows.phpt | 2 SQLite3::prepare number of rows 29 echo "Number of rows\n"; 44 Number of rows
|
/php-src/ext/dba/tests/ |
H A D | dba_db4_018.phpt | 35 echo "Test 3 - fetch both rows from second object\n"; 41 echo "Test 4 - fetch both rows from first object\n"; 69 Test 3 - fetch both rows from second object 72 Test 4 - fetch both rows from first object
|
H A D | dba015.phpt | 35 echo "Test 3 - fetch both rows from second object\n"; 41 echo "Test 4 - fetch both rows from first object\n"; 69 Test 3 - fetch both rows from second object 72 Test 4 - fetch both rows from first object
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_connection.h | 37 #define UPSERT_STATUS_SET_AFFECTED_ROWS(status, rows) (status)->affected_rows = (rows) argument
|