I wonder if there is a way to accomplish:
SELECT * FROM table
by using LIMIT and OFFSET like so:
LIMIT
OFFSET
This may not be the best way to do it, but its the first that comes to mind...
SELECT * FROM myTable LIMIT 0,1000000
Replace 1000000 with some adequately large number that you know will always be larger than the total number of records in the table.