Home
last modified time | relevance | path

Searched refs:row (Results 201 – 225 of 315) sorted by relevance

12345678910>>...13

/PHP-5.5/ext/mysqli/tests/
H A Dbug52891.phpt88 while ($row = $result->fetch_assoc()) {
89 var_dump($row);
92 while ($row = $result2->fetch_assoc()) {
93 var_dump($row);
H A Dmysqli_stmt_fetch_geom.phpt80 foreach ($rows as $row) {
91 $new_id = $row['id'] + 10;
92 if (!mysqli_stmt_bind_param($stmt, "is", $new_id, $row['label'])) {
114 if ($row_normal['label'] != $row['label']) {
H A Dmysqli_pconn_max_links.phpt79 if (!$row = mysqli_fetch_assoc($res))
83 var_dump($row);
106 while ($row = mysqli_fetch_assoc($res))
107 $running_threads[$row['Id']] = $row;
138 if (!$row = mysqli_fetch_assoc($res))
142 var_dump($row);
H A Dbug42548.phpt34 while ($row = $objResult->fetch_assoc()) {
35 print_r($row);
H A Dmysqli_real_escape_string_nobackslash.phpt41 !($row = mysqli_fetch_assoc($res)))
44 var_dump($row);
H A Dmysqli_explain_metadata.phpt23 if (!$row = mysqli_fetch_assoc($res)) {
28 $num_fields = count($row);
29 foreach ($row as $name => $value)
33 while ($row = mysqli_fetch_assoc($res))
H A Dmysqli_ps_select_union.phpt20 while ($row = $res->fetch_assoc()) {
21 $data[] = $row['column1'];
22 var_dump($row['column1']);
77 while ($row = $res->fetch_assoc()) {
78 $data[] = $row['column1'];
126 while ($row = $res->fetch_assoc()) {
127 $data[] = $row['column1'];
H A Dmysqli_stmt_reset.phpt86 if (!$row = mysqli_fetch_assoc($res))
91 if ($row['label'] != '')
92 printf("[020] Expecting empty string, got string/%s\n", $row['label']);
H A Dbug64726.phpt22 Warning: mysqli_result::fetch_object(): Error while reading a row in %sbug64726.php on line %d
/PHP-5.5/ext/gd/libgd/
H A Dgdft.c596 int x, y, row, col, pc, pcr; local
606 for (row = 0; row < bitmap.rows; row++) {
607 pc = row * bitmap.pitch;
609 y = pen_y + row;
661 for (row = 0; row < bitmap.rows; row++) {
663 pc = row * bitmap.pitch;
668 y = pen_y + row;
H A Dgd_topal.c355 int row; local
364 for (row = 0; row < num_rows; row++)
366 ptr = input_buf[row];
1303 int row; local
1308 for (row = 0; row < num_rows; row++)
1310 inptr = input_buf[row];
1311 outptr = output_buf[row];
1383 int row; local
1404 SHIFT_TEMPS for (row = 0; row < num_rows; row++)
1406 inptr = input_buf[row];
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_server_info.phpt33 if (!$row = $stmt->fetch(PDO::FETCH_NUM))
36 $uptime = $row[1];
H A Dbug_41125.phpt10 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
12 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dpdo_mysql_bit.phpt34 $row = $stmt->fetch(PDO::FETCH_ASSOC);
35 var_dump($row);
H A Dbug_pecl_7976.phpt11 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dbug_39858.phpt11 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
13 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
/PHP-5.5/ext/sybase_ct/tests/
H A Dtest_query_nostore.phpt48 while ($row= sybase_fetch_assoc($q)) {
49 var_dump($row);
/PHP-5.5/ext/mysql/tests/
H A Dmysql_tablename.phpt49 Warning: mysql_tablename(): Unable to jump to row -1 on MySQL result index %d in %s on line %d
52 Warning: mysql_tablename(): Unable to jump to row 2 on MySQL result index %d in %s on line %d
H A Dmysql_result.phpt15 // string mysql_result ( resource result, int row [, mixed field] )
70 Warning: mysql_result(): Unable to jump to row -1 on MySQL result index %d in %s on line %d
73 Warning: mysql_result(): Unable to jump to row 2 on MySQL result index %d in %s on line %d
/PHP-5.5/ext/pdo/tests/
H A Dpdo_026.phpt62 foreach ($data as $row) {
63 $stmt->execute($row);
H A Dpdo_022.phpt42 foreach ($data as $row) {
43 $stmt->execute($row);
H A Dpdo_025.phpt31 foreach ($data as $row) {
32 $stmt->execute($row);
H A Dpdo_029.phpt68 foreach ($data as $row) {
69 $stmt->execute($row);
H A Dpdo_030.phpt66 foreach ($data as $row) {
67 $stmt->execute($row);
/PHP-5.5/ext/oci8/tests/
H A Dxmltype_01.phpt44 $row = oci_fetch_row($s);
45 $data = $row[0]->load();

Completed in 33 milliseconds

12345678910>>...13