[android-developers] Re: ORM tool for ANDROID Applications

2010-05-19 Thread Michael
Try ActiveAndroid: http://activeandroid.com There's a sample project with source that's up on the market. On Mar 15, 6:19 pm, Hari wrote: > Hi, > I am new to ANDROID application development. I am in the process of > learning ANDROID framework and trying to understand the examples. I > noticed th

[android-developers] Re: ORM tool for ANDROID Applications

2010-03-17 Thread ko5tik
Just answer yourself: do you really need SQL database? For my game highscore storage I thought about it, and answer was "NO": - I do not have to keep a lot of entries ( maybe 200 - it' enough ) - I'm not sure that my entry will stay the same (upgrading schema is PITA) - Doing "select count"

[android-developers] Re: ORM tool for ANDROID Applications

2010-03-17 Thread Hari
Memory footprint considerations are top priority. However, the dependency is only 1MB ( db4o-7.4.72.12266-java5.jar ) for Db4O ! On Mar 17, 3:10 am, ko5tik wrote: > There is some movemet in this: >  -http://groups.google.com/group/androdb-dev- people have started > work on liteweight ORM tool

[android-developers] Re: ORM tool for ANDROID Applications

2010-03-17 Thread ko5tik
There is some movemet in this: - http://groups.google.com/group/androdb-dev - people have started work on liteweight ORM tool (not much there yet) - I use JSON marhalling to text files (functional: http://github.com/ko5tik/jsonserializer ) - you may dig out xdoclet(2) and create plugin to gener

[android-developers] Re: ORM tool for ANDROID Applications

2010-03-16 Thread Hari
Thank you for the response.We have started to evaluate sqlitegen... After posting the initial message, i stumbled on db4O and the website says the following "Using db4o in your Android apps is FREE!". At the sametime i have read in forums where people have discussed about the licensing iss

[android-developers] Re: ORM tool for ANDROID Applications

2010-03-16 Thread Kumar Bibek
ORM tools are good and efficient for large systems where you have a large backend. But for a phone, you don't have the necessary resources to cater to such complex ORM tools. Thanks and Regards, Kumar Bibek On Mar 16, 3:19 am, Hari wrote: > Hi, > I am new to ANDROID application development. I am