On Mon, Jul 26, 2010 at 12:44 PM, Quinn Rohlf <[email protected]> wrote: > Is there any way that this could be a problem in the database rather than > the listview? My query looks like this: > Cursor c = mDB.query(DB_TABLENAME, new String[]{"_id", "ICONID", "DATE", > "TITLE", "URL"}, null, null, null, null,"DATE DESC");
Other than your use of query() instead of rawQuery(), what you have there does not seem unusual. If it is returning thousands of rows, *that* might have an issue, as a Cursor over 1MB winds up being some form of windowed Cursor. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.9 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

