Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - Programming » SQL Anywhere PHP API » SQL Anywhere PHP API reference

sqlanywhere_fetch_object Next Page

sqlanywhere_fetch_row


Prototype

array sqlanywhere_fetch_row( resource result_identifier )

Description

Fetches one row from the result set. This row is returned as an array that can be indexed by the column indexes only.

Parameters

result_identifier    The result identifier returned by a sqlanywhere_query function.

Returns

An array that represents a row from the result set, or false when no rows are available.

Example

This example shows how to retrieve one row at a time from a result set.

while( ($row = sqlanywhere_fetch_row( $result )) ) {
        echo "$row[0] \n";     # output the data in the first column only.
  }
Related functions