Home
last modified time | relevance | path

Searched refs:rows (Results 26 – 50 of 90) sorted by relevance

1234

/PHP-5.5/ext/pgsql/tests/
H A D18pg_escape_bytea_hex.phpt22 $rows = pg_fetch_all($result);
23 $unesc_image = pg_unescape_bytea($rows[0]['bin']);
H A D22pg_fetch_object.phpt21 $rows = pg_num_rows($result);
H A D17result.phpt15 $rows = pg_num_rows($result);
/PHP-5.5/ext/dba/tests/
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
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
/PHP-5.5/ext/mysqli/tests/
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 Dbug49442.phpt54 $rows = array();
57 $rows[] = $row;
97 if (($row['id'] != $rows[$i]['id']) || ($row['label'] != $rows[$i]['label'])) {
H A Dmysqli_stmt_get_result_seek.phpt31 printf("[005] Expecting 3 rows, got %s/%s rows\n", gettype($res->num_rows), $res->num_rows);
34 …printf("[006] Expecting 2 fields, got %s/%s rows\n", gettype($res->field_count), $res->field_count…
37 …printf("[006] Expecting offset 0, got %s/%s rows\n", gettype($res->current_field), $res->current_f…
H A Dmysqli_change_user_rollback.phpt58 printf("[010] Expecting %d rows in the table test, found %d rows\n",
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_stmt_fetch_geom.phpt67 $rows = array();
69 $rows[] = array('id' => $id, 'label' => $bind_res);
80 foreach ($rows as $row) {
H A Dmysqli_rollback.phpt58 printf("[12] Expecting 0 rows in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_stmt_multires.phpt53 printf("[008] No more rows expected\n");
74 printf("[012] No more rows expected\n");
/PHP-5.5/ext/pdo_firebird/tests/
H A DrowCount.phpt24 $rows = $stmt->fetch();
25 $rows = $stmt->fetch();
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetch_serialize_simple.phpt52 $rows = $stmt->fetchAll(PDO::FETCH_CLASS|PDO::FETCH_SERIALIZE, 'myclass', array('Called by PDO'));
53 var_dump($rows[0]);
56 $rows = $stmt->fetchAll(PDO::FETCH_CLASS|PDO::FETCH_SERIALIZE, 'myclass');
57 var_dump($rows[0]);
H A Dpdo_mysql_prepare_load_data.phpt57 /* affected rows related */
89 $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
90 if (!isset($rows[0]['one']) || $rows[0]['one'] != 1)
H A Dpdo_mysql_stmt_fetchobject.phpt64 $rows[] = array();
65 while (is_object($rows[] = $stmt->fetchObject('myclass', array($rowno++, $rowno))))
68 var_dump($rows[$rowno - 1]);
H A Dpdo_mysql_exec.phpt2 MySQL PDO->exec(), affected rows
36 /* affected rows related */
58 …1. But the MySQL 5.1 manual states: Truncation operations do not return the number of deleted rows.
161 // this is interesting: if we get sort of affected rows, what will happen now?
163 …ith emulated PS it works but makes no sense given that exec() returns sort of affected rows...\n");
184 [035] With emulated PS it works but makes no sense given that exec() returns sort of affected rows.…
H A Dpdo_mysql_exec_ddl.phpt2 MySQL PDO->exec(), affected rows
40 /* affected rows related */
H A Dpdo_mysql_exec_load_data.phpt2 MySQL PDO->exec(), affected rows
55 /* affected rows related */
/PHP-5.5/ext/oci8/tests/
H A Drefcur_prefetch_2.phpt41 // Insert 500 rows into the table.
91 echo "Number of roundtrips made with prefetch count 0 for 5 rows is $cnt\n";
100 echo "Number of roundtrips made with prefetch count 5 for 5 rows is $cnt\n";
177 Number of roundtrips made with prefetch count 0 for 5 rows is 6
208 Number of roundtrips made with prefetch count 5 for 5 rows is 2
H A Drefcur_prefetch_3.phpt28 // Insert 500 rows into the table.
60 echo "Number of roundtrips made with prefetch count 5 for 10 rows is $cnt\n";
136 Number of roundtrips made with prefetch count 5 for 10 rows is 3
/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++) {

Completed in 51 milliseconds

1234