espositophp
Programmer
- Sep 30, 2003
- 31
Hello, I am in hot water using SQLITE.
My film database is now more than 70 megabytes big and when I run the statement
it gives me an error message telling me there's a memory overflow.
So, I think I should sort out the problem by limiting the range of records satisfying the query. For example, I could use
Nevertheless, when I have to move to the last record, I am forced to select the rows from start to finish and, on doing so, my app crashes.
What am I missing?
Thanks in advance for your help.
My film database is now more than 70 megabytes big and when I run the statement
Code:
sl3tb := sl3db.GetTable('SELECT * FROM film');
it gives me an error message telling me there's a memory overflow.
So, I think I should sort out the problem by limiting the range of records satisfying the query. For example, I could use
Code:
sl3tb := sl3db.GetTable('SELECT * FROM film WHERE ID < 50');
Nevertheless, when I have to move to the last record, I am forced to select the rows from start to finish and, on doing so, my app crashes.
What am I missing?
Thanks in advance for your help.