array sqlanywhere_fetch_array( resource result_identifier )
This function is deprecated. You should use the following PHP function instead: sasql_fetch_array.
Fetches one row from the result set. This row is returned as an array that can be indexed by the column names or by the column indexes.
result_identifier The result resource returned by the sqlanywhere_query function.
An array that represents a row from the result set, or FALSE when no rows are available.
This example shows how to retrieve all the rows in a result set. Each row is returned as an array.
$result = sqlanywhere_query( $conn, "SELECT GivenName, Surname FROM Employees" ); While( ($row = sqlanywhere_fetch_array( $result )) ) { echo " GivenName = " . $row["GivenName"] . " \n" ; echo " Surname = $row[1] \n"; } |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |