[android-developers] Re: Available databases for Android

2010-12-15 Thread Jawwad Farooq
While surfing I found a very very useful resource: http://tordtech.blogspot.com/search/label/Benchmarking Please have a look .. On Dec 15, 10:40 am, Jawwad Farooq jawwad.far...@gmail.com wrote: Thanks for the link But I only need the benchmarks for available Android databases..

Re: [android-developers] Re: Available databases for Android

2010-12-15 Thread Miguel Morales
There's also CouchDB for Android: http://www.couchone.com/android On Wed, Dec 15, 2010 at 12:06 AM, Jawwad Farooq jawwad.far...@gmail.com wrote: While surfing I found a very very useful resource: http://tordtech.blogspot.com/search/label/Benchmarking Please have a look .. On Dec 15,

[android-developers] Re: Available databases for Android

2010-12-15 Thread Swaroop
Experts correct me If I am wrong. But putting out the facts, the things I didn't like SQLite and hope they'd be bettered in the future. 1) There's no JDBC support for SQLite - I know we can use the Runtime JDBC Libraries, but it's not recommended -

Re: [android-developers] Re: Available databases for Android

2010-12-15 Thread Jitesh dedhiya
If you want you can go for NO-SQL/Schema free db like CouchDB (couchone). http://couchdb.org For more info on couchdb just google it!!! -- --Jitesh .V. Dedhiya--- Don't Learn To Hack but Hack To Learn -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Available databases for Android

2010-12-15 Thread Bob Kerns
Re: #2 -- you don't want to do beginTransaction() in your UI thread anyway, really, as it can block if file IO is heavy. (I do, and I'm going to change it). You should make the entire transaction into an AsyncTask, which will keep it out of the UI thread entirely. I can't offhand think of a

[android-developers] Re: Available databases for Android

2010-12-15 Thread Swaroop
Bob, I am primarily referring to enterprise applications which usually have a front end and also background threads. I agree that we should try to have database commits in an async task even for UI Threads, but not always that suits the actual requirement. I am stuck with a few scenarios.. So

[android-developers] Re: Available databases for Android

2010-12-15 Thread Bob Kerns
Enterprise applications generally don't do database access on a handheld. They generally talk to a server, and the server talks to a shared database, and it won't be SQLite. Of course, that network IO needs to be on a background thread. As long as we're talking in generalities, anyway... But

[android-developers] Re: Available databases for Android

2010-12-14 Thread Alessandro Pellizzari
Il Tue, 14 Dec 2010 07:28:34 -0800, Jawwad Farooq ha scritto: Can you please mention some of the databases like SQLite to use in Android applications?? 1- SQLite Bye. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Available databases for Android

2010-12-14 Thread Bret Foreman
http://www.theregister.co.uk/2010/03/24/oracle_berkeley_db_android/ On Dec 14, 8:22 am, Jake Basile jakerbas...@gmail.com wrote: The only built in option is SQLite, available under android.database.sqlite. I'm not aware of anything else but there could be third party ones available. -- You

Re: [android-developers] Re: Available databases for Android

2010-12-14 Thread Julie Andrews
On Tue, Dec 14, 2010 at 9:58 PM, Bret Foreman bret.fore...@gmail.comwrote: http://www.theregister.co.uk/2010/03/24/oracle_berkeley_db_android/ On Dec 14, 8:22 am, Jake Basile jakerbas...@gmail.com wrote: The only built in option is SQLite, available under android.database.sqlite. I'm not

[android-developers] Re: Available databases for Android

2010-12-14 Thread Jawwad Farooq
Thanks to all of you Still looking for other answers On Dec 14, 9:28 pm, Bret Foreman bret.fore...@gmail.com wrote: http://www.theregister.co.uk/2010/03/24/oracle_berkeley_db_android/ On Dec 14, 8:22 am, Jake Basile jakerbas...@gmail.com wrote: The only built in option is

Re: [android-developers] Re: Available databases for Android

2010-12-14 Thread Julie Andrews
On Tue, Dec 14, 2010 at 10:04 PM, Jawwad Farooq jawwad.far...@gmail.comwrote: Thanks to all of you Still looking for other answers On Dec 14, 9:28 pm, Bret Foreman bret.fore...@gmail.com wrote: http://www.theregister.co.uk/2010/03/24/oracle_berkeley_db_android/ On Dec 14,

[android-developers] Re: Available databases for Android

2010-12-14 Thread Bret Foreman
Regarding the Berkeley DB, you should remember that SQLite is already more complex than many developers want to deal with. Berkeley DB is a full-fledged database like Oracle and it's far more complex than SQLite. I wouldn't recommend using it unless you have a very complex data model and very

Re: [android-developers] Re: Available databases for Android

2010-12-14 Thread Julie Andrews
On Tue, Dec 14, 2010 at 10:08 PM, Bret Foreman bret.fore...@gmail.comwrote: Regarding the Berkeley DB, you should remember that SQLite is already more complex than many developers want to deal with. Berkeley DB is a full-fledged database like Oracle and it's far more complex than SQLite. I

[android-developers] Re: Available databases for Android

2010-12-14 Thread Jawwad Farooq
No, I don't want to have such type of complex functionality on the phone. But for the knowledge and to make the performance comparison among all the available DBs. On Dec 14, 9:38 pm, Bret Foreman bret.fore...@gmail.com wrote: Regarding the Berkeley DB, you should remember that of complex

[android-developers] Re: Available databases for Android

2010-12-14 Thread Bret Foreman
Here's a list of the standard DB performance metrics: http://www.tpc.org/tpcc/ Which ones are you interested in? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: Available databases for Android

2010-12-14 Thread Jawwad Farooq
Thanks for the link But I only need the benchmarks for available Android databases.. Any other link?? On Dec 14, 10:00 pm, Bret Foreman bret.fore...@gmail.com wrote: Here's a list of the standard DB performance metrics:http://www.tpc.org/tpcc/ Which ones are you interested in? -- You