Home
last modified time | relevance | path

Searched refs:row (Results 251 – 275 of 315) sorted by relevance

1...<<111213

/PHP-5.5/ext/mysql/tests/
H A Dmysql_fetch_lengths.phpt26 while ($row = mysql_fetch_assoc($res))
H A Dmysql_query_load_data_openbasedir.phpt90 !($row = mysql_fetch_assoc($res)) ||
94 if ($row['label'] != "x")
/PHP-5.5/ext/mysql/
H A Dphp_mysql.c199 ZEND_ARG_INFO(0, row)
1466 MYSQL_ROW row; local
1478 while ((row = mysql_fetch_row(mysql_result))) {
1479 if (!strcmp("ALL", row[1])) {
1480 …full tablescan (table %s, %s rows affected). Use EXPLAIN to optimize your query.", row[0], row[6]);
1481 } else if (!strcmp("INDEX", row[1])) {
1482 …full indexscan (table %s, %s rows affected). Use EXPLAIN to optimize your query.", row[0], row[6]);
1915 long row; local
1928 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|z", &result, &row, &field) == FAILURE) {
1934 if (row<0 || row>=(int)mysql_num_rows(mysql_result)) {
[all …]
/PHP-5.5/ext/sqlite3/tests/
H A Dsqlite3_12_unfinalized_stmt_cleanup.phpt23 /* Only read one row and break */
/PHP-5.5/ext/mysqli/tests/
H A Dbug48909.phpt30 1366 - Incorrect integer value: '' for column 'id' at row 1
H A Dmysqli_stmt_bind_limits.phpt92 $row = $res->fetch_row();
96 if ($row[$i + 1] != $i) {
H A Dmysqli_character_set.phpt43 while ($row = mysqli_fetch_assoc($res))
44 $charsets[] = $row;
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt36 if (!$row = mysqli_fetch_assoc($res))
41 if (0 === ($max_allowed_packet = (int)$row['Value']))
H A Dmysqli_fetch_assoc_no_alias_utf8.phpt69 while ($row = mysqli_fetch_assoc($res)) {
70 var_dump($row);
H A Dmysqli_stmt_num_rows.phpt64 $row = mysqli_fetch_assoc($res);
66 func_test_mysqli_stmt_num_rows($stmt, "SELECT id, label FROM test", (int)$row['num'], 40);
H A Dmysqli_stmt_execute_stored_proc.phpt87 if ((!($row = mysqli_fetch_assoc($res))) || ($row['_version'] == ""))
89 $row['_version'],
H A Dmysqli_options.phpt82 while ($row = mysqli_fetch_assoc($res))
83 $charsets[] = $row;
H A Dmysqli_class_mysqli_result_interface.phpt16 $row = $mysqli_result->fetch_row();
20 assert(mysqli_fetch_row($res) === $row);
H A Dmysqli_autocommit.phpt80 printf("[17] Expecting 1 row in table test, found %d rows. [%d] %s\n",
128 printf("[31] Expecting 1 row in table test, found %d rows. [%d] %s\n",
/PHP-5.5/ext/oci8/tests/
H A Ddrcp_pconn_close2.phpt25 // Query for the row updated. The new value should be returned
H A Dlob_040.phpt26 $row = array();
28 $row[$i] = oci_fetch_array($s, OCI_NUM);
32 echo "Row $i Size: " . $row[$i][0]->size() . "\n";;
33 echo "Pos 1: " . $row[$i][0]->tell() . "\n";
34 echo "Data: " . $row[$i][0]->read(5) . "\n";;
35 echo "Pos 2: " . $row[$i][0]->tell() . "\n";
36 echo "Data: " . $row[$i][0]->read(12) . "\n";
H A Dconnect_scope1.phpt50 // insert 2nd row on returned statement, committing both rows
H A Dconnect_scope2.phpt50 // insert 2nd row on returned statement, committing both rows
H A Dedition_1.phpt32 while ($row = oci_fetch_row($s)) {
33 var_dump($row);
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_oracle_nulls.phpt36 $row = $stmt->fetch(PDO::FETCH_ASSOC);
37 if ((int)substr($row['_version'], 0, 1) >= 5)
H A Dpdo_mysql_stmt_getcolumnmeta.phpt11 $row = $stmt->fetch(PDO::FETCH_ASSOC);
12 $version = ((int)substr($row['_version'], 0, 1) * 10) + (int)substr($row['_version'], 2, 1);
88 $row = $stmt->fetch(PDO::FETCH_ASSOC);
146 $row = $stmt->fetch(PDO::FETCH_ASSOC);
147 $real_as_float = (false === stristr($row['_mode'], "REAL_AS_FLOAT")) ? false : true;
H A Dpdo_mysql_multi_stmt_nextrowset.phpt9 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
11 if (!preg_match('/^(\d+)\.(\d+)\.(\d+)/ismU', $row['_version'], $matches))
H A Dpdo_mysql_attr_max_buffer_size.phpt44 while ($row = $stmt->fetch(PDO::FETCH_BOUND)) {
/PHP-5.5/ext/odbc/
H A Dbirdstep.c432 UDWORD row; in PHP_FUNCTION() local
441 stat = SQLExtendedFetch(res->hstmt,SQL_FETCH_NEXT,1,&row,RowStat); in PHP_FUNCTION()
467 UDWORD row; in PHP_FUNCTION() local
502 stat = SQLExtendedFetch(res->hstmt,SQL_FETCH_NEXT,1,&row,RowStat); in PHP_FUNCTION()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd.h127 #define mysqlnd_data_seek(result, row) (result)->m.seek_data((result), (row) TSRMLS_CC) argument
231 #define mysqlnd_stmt_data_seek(stmt, row) (stmt)->m->seek_data((stmt), (row) TSRMLS_CC) argument

Completed in 38 milliseconds

1...<<111213