[android-developers] Re: Using SQLite for caching and serialization options

2009-05-11 Thread hapciu
Hi Alan, I have an almost identical problem. What approach did you take after all ? So far I'm thinking of: - use a common table for the fields of the superclass, and a table for each in subclass (the subclass fields). This is overkill. - flatten the subclass fields and put them in the database

[android-developers] Re: Using SQLite for caching and serialization options

2009-04-15 Thread Alan Jones
Hi, On Apr 14, 4:27 am, nEx.Software justin.shapc...@gmail.com wrote: You could use an object-oriented database such ashttp://www.db4o.com/android/, of course this one requires GPL. Interesting link, thanks. Though at this stage I won't be releasing this under GPL so that's not an option yet.

[android-developers] Re: Using SQLite for caching and serialization options

2009-04-13 Thread nEx.Software
You could use an object-oriented database such as http://www.db4o.com/android/, of course this one requires GPL. On Apr 13, 5:41 am, Alan Jones skyp...@gmail.com wrote: Hi All, I've got some classes which inherit from a single class, but differ significantly in the data they store. They