[android-developers] Re: Should I use Cursors, or and Object[] to return data from a DB

2009-05-13 Thread Mark Murphy
Please bear in mind that you are writing applications to run on mobile devices whose horsepower is reminiscent of PCs from a decade ago. Programming techniques that you might use on a current PC with tons of RAM, fast CPUs, and access to constant AC power are not necessarily recommended in

[android-developers] Re: Should I use Cursors, or and Object[] to return data from a DB

2009-05-13 Thread Dianne Hackborn
And there are of course other ways to do this -- have a PolygonCursor object for instance that lets you iterate over the cursor and provides an API to get the polygon data for the current position. On Wed, May 13, 2009 at 11:40 AM, Mark Murphy mmur...@commonsware.comwrote: Please bear in mind