Search found 4 matches

by yeohray
20.09.2008, 15:57
Forum: 6.6 - stable
Topic: Feature question
Replies: 5
Views: 641

Thanks for the suggestions. I should also have added that it made no difference if the native result set was used. The memory consumption of my app still increases linearly with the amount of data retrieved. So there's actually 2 issues to address: - use mysql_use_result and mysql_fetch_row to retri...
by yeohray
20.09.2008, 04:51
Forum: 6.6 - stable
Topic: Feature question
Replies: 5
Views: 641

I took at a look at the mysql interface, and it isn't easy. There is an option to use the mysql_use_result function, that only fetches each row individually, but the rest of the library is designed without supporting that function i.e. it tries to retrieve column definitions for the result set, when...
by yeohray
19.09.2008, 13:39
Forum: 6.6 - stable
Topic: Feature question
Replies: 5
Views: 641

Thanks for your detailed explanation. I'll post a code sample if I manage to work around the caching issue.

Ray Mond
by yeohray
19.09.2008, 11:02
Forum: 6.6 - stable
Topic: Feature question
Replies: 5
Views: 641

Feature question

I am currently evaluating Zeoslib and have a question. Is the following possible using zeoslib? - user runs a query that retrieves 1000 rows - zeoslib retrieves first 10 rows - my app processes each row, does some calculation etc - when my app tries to retrieve the 11th row, zeoslib then retrieves t...