Everytime when I try to do a single query to retireve rows of data, I get the error
2008: MySQL client ran out of memory
I decided the best way to retrieve this data is to do mulitiple query calls using the LIMIT command
SELECT * FROM table1 LIMIT 0 , 10
SELECT * FROM table1 LIMIT 10 , 20
SELECT * FROM table1 LIMIT 20 , 30
SELECT * FROM table1 LIMIT 30 , 40
But first. I need to figure out how large the query is as a whole. so wont atleast go over the LIMIT. Anyone can tell me the best method of doing this ??