I have successfully connected my php script to a transbase database with odbc. Here’s a simple question I am not able to find an answer: how can I jump to a specific row number in a result set?
EDIT: This is how I’m going through the result set while ($row = odbc_fetch_array($rid)) right now, but I would want to start only from row number 1000 for example without fetching all 999 until that row.
As per PHP manual, second argument of odbc_fetch_array allow you to fetch row by number.
See Manual for more details here: http://php.net/manual/en/function.odbc-fetch-array.php