Home
last modified time | relevance | path

Searched refs:rows (Results 1 – 25 of 90) sorted by path

1234

/PHP-5.5/
H A DNEWS3695 rows on postgresql >= 9). (ben dot pineau at gmail dot com)
4421 . Fixed buggy counting of affected rows when using the text protocol. The
4510 all of the rows have been fetched). (Scott)
6362 - Fixed bug #48313 (fgetcsv() does not return null for empty rows). (Ilia)
8817 - Fixed bug #36176 (PDO_PGSQL - PDO::exec() does not return number of rows
9026 - Fixed bug #35391 (pdo_mysql::exec does not return number of affected rows).
/PHP-5.5/Zend/
H A Dbench.php267 function mkmatrix ($rows, $cols) { argument
270 for ($i=0; $i<$rows; $i++) {
278 function mmult ($rows, $cols, $m1, $m2) { argument
280 for ($i=0; $i<$rows; $i++) {
/PHP-5.5/ext/dba/tests/
H A Ddba015.phpt31 echo "Test 3 - fetch both rows from second resource\n";
37 echo "Test 4 - fetch both rows from first resource\n";
64 Test 3 - fetch both rows from second resource
67 Test 4 - fetch both rows from first resource
H A Ddba_db4_018.phpt31 echo "Test 3 - fetch both rows from second resource\n";
37 echo "Test 4 - fetch both rows from first resource\n";
64 Test 3 - fetch both rows from second resource
67 Test 4 - fetch both rows from first resource
/PHP-5.5/ext/dom/tests/
H A Ddomelement.phpt53 $rows = $node->getElementsByTagName('row');
54 echo "Row Count: ".$rows->length."\n";
/PHP-5.5/ext/exif/
H A Dtest.txt266 $rows = 1
270 …if ( !$fast_output) echo "<tr><td rowspan='$rows' valign='top'>$num</td><th colspan='2'>$file</th>…
/PHP-5.5/ext/gd/libgd/
H A Dgdft.c606 for (row = 0; row < bitmap.rows; row++) {
661 for (row = 0; row < bitmap.rows; row++) {
/PHP-5.5/ext/interbase/tests/
H A D005.phpt127 echo "two rows\n";
134 echo "two rows again\n";
182 echo "three rows\n";
191 echo "four rows\n";
200 echo "four rows again\n";
242 two rows
247 two rows again
256 three rows in third transaction
269 three rows
275 four rows
[all …]
/PHP-5.5/ext/mysql/tests/
H A Dmysql_num_rows.phpt60 printf("[032] Expecting 0 rows got %d\n", mysql_num_rows($res));
62 $rows = 0;
64 $rows++;
66 if ($rows != mysql_num_rows($res))
67 printf("[033] Expecting %d rows got %d\n", $rows, mysql_num_rows($res));
H A Dmysql_unbuffered_query.phpt119 Notice: mysql_close(): Function called without first fetching all rows from a previous unbuffered q…
/PHP-5.5/ext/mysqli/tests/
H A Dbug49442.phpt54 $rows = array();
57 $rows[] = $row;
97 if (($row['id'] != $rows[$i]['id']) || ($row['label'] != $rows[$i]['label'])) {
H A Dmysqli_autocommit.phpt80 printf("[17] Expecting 1 row in table test, found %d rows. [%d] %s\n",
115 printf("[27] Expecting 0 rows in table test, found %d rows\n", $tmp['num']);
128 printf("[31] Expecting 1 row in table test, found %d rows. [%d] %s\n",
H A Dmysqli_autocommit_oo.phpt69 printf("[014] Expecting 1 row in table test, found %d rows. [%d] %s\n",
105 printf("[24] Expecting 0 rows in table test, found %d rows\n", $tmp['num']);
118 printf("[028] Expecting 1 row in table test, found %d rows. [%d] %s\n",
H A Dmysqli_change_user_locks_temporary.phpt40 printf("[005] There should be some rows in the table test\n");
61 printf("[011] There should be three rows in the table test\n");
H A Dmysqli_change_user_rollback.phpt58 printf("[010] Expecting %d rows in the table test, found %d rows\n",
H A Dmysqli_commit.phpt59 printf("[12] Expecting 1 row in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_commit_oo.phpt67 printf("[010] Expecting 1 row in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_fork.phpt154 /* client has started fetching rows */
159 printf("[011] Child has fetched more than three rows!\n");
H A Dmysqli_get_client_stats.phpt561 $rows = 0;
563 $rows++;
565 if (0 == $rows)
H A Dmysqli_get_client_stats_ps.phpt44 printf("[003] Unbuffered rows got increased after buffered PS, expecting %d got %d.\n",
50 printf("[005] Buffered rows should be %d got %d.\n",
72 printf("[007] Unbuffered rows should be %d got %d.\n",
77 printf("[005] Buffered rows should be unchanged, expecting %d got %d.\n",
H A Dmysqli_get_client_stats_skipped.phpt2 mysqli_get_client_stats() - skipped rows
33 /* fetch all rows but the last one */
H A Dmysqli_insert_id.phpt88 return the AUTO_INCREMENT key from the first of the inserted rows. This allows
H A Dmysqli_more_results.phpt73 // you must fetch all rows before you can loop to the next result set!
H A Dmysqli_multi_query.phpt132 printf("[018 - %d] Expecting 1 row, got %d rows\n", $num_rows);
H A Dmysqli_result_references_mysqlnd.phpt44 $rows = array();
46 $rows[$i] = mysqli_fetch_assoc($res);
47 $references[$idx]['row_ref'] = &$rows[$i];
48 $references[$idx]['row_copy'] = $rows[$i];
49 $references[$idx]['id_ref'] = &$rows[$i]['id'];
50 $references[$idx]['id_copy'] = $rows[$i]['id'];
52 $references[$idx]['id_copy_mod']= $rows[$i]['id'] + 0;

Completed in 53 milliseconds

1234