Re: [PHP-DB] WIERD: odbc_fetch_row return value backwards? From: Andreas Karajannis (Andreas.Karajannis <email protected>)
Date: 08/31/00

Tyson Lloyd Thwaites wrote:
>
> Hi all,
>
> Is this broken?
>
> if (odbc_fetch_row($qry, $row)==true) {
> return odbc_result($qry, $fld);
> } else {
> return "err";
> }
>

It seems your odbc driver only supports forward cursors,
odbc_fetch_row() detects this and ignores the $row parameter.

Same applies to refetching rows / scrolling backwards. Workaround would
be to use a odbc cursor library (is supplied under Win* with the
drivermanager) or implementing it in PHP.

-Andreas

-- 
Andreas Karajannis
GMD National Research Center for Information Technology
Schloss Birlinghoven, D-53754 Sankt Augustin
Phone +49 2241 142948

-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>