No. In IB 6.5 or later you can do it easily with the ROWS clause. With
earlier versions you will need to write a stored procedure to return
the rows you want.
So when I do the query in the InterBase, I don't have the luxury just a simple query to return the rows from which number to which number.
And then in PHP, i will call the
while ($row=ibase_fetch_object($select_query_statement))
to fetch the returned rows, one by one.
Say if the rows are 100,000, and I only want the 99,900 to 100,000. I still have to go through the whole 100,000 rows? There must be an easy solution out there for us (If the database don't offer the select certain rows feature.)
Thanks!