PHP.nl

odbc_fetch_row

odbc_fetch_row

Fetch a row

bool **odbc_fetch_row** Odbc\Result $statement  $row

Fetches a row of the data that was returned by or . After is called, the fields of that row can be accessed with . odbc_do``odbc_exec``odbc_fetch_row``odbc_result

statementodbc.result.object.

row If is not specified, will try to fetch the next row in the result set. Calls to with and without can be mixed. row``odbc_fetch_row``odbc_fetch_row``row

   To step through the result more than once, you can call
    with
    1, and then continue doing
    without
    to review the result.  If a driver
   doesn't support fetching rows by number, the
    parameter is ignored.
  `odbc_fetch_row``row``odbc_fetch_row``row``row`

Returns true if there was a row, false otherwise.

An is emitted when is equal or less than zero. E_WARNING``row