On Sat, Jul 24, 2010 at 8:03 AM, Capt Spaghetti <[email protected]> wrote: > Mark, > > It just occurred to me that your second option "have your smarter > server generate a SQLite database that you download periodically and > use locally on the device." might be just the approach I need. I could > generate 50 seperate SQLite files. The question then becomes how to > incorporate these locally and access?
Why 50 files? Why not one file? Just download them (SD card or on-board flash, depending on size). I'm not sure whether SQLiteOpenHelper will be the right access pattern -- you may just want to use openDatabase() on SQLiteDatabase. -- 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

