[android-developers] Re: Android MYSQL

2010-03-11 Thread cellurl
try the examples. I forget the name. Search for sqlite. On Mar 8, 3:45 pm, Si458 wrote: > Hiya, > > Im currently trying to develop a mysql app on the android, ive got the > basics working and ive also managed to get the JDBC working with java > but not android :( > > im running my application th

[android-developers] Re: Android MYSQL

2010-03-11 Thread Bob Kerns
SQLlite is a very different animal -- it's a local embedded database for local storage. It's OK for a client to use SQL to basically talk to itself. But that's not what he's trying to do. On Mar 10, 8:50 pm, saru wrote: > Who told to develop mysql application in android. > Android does not suppor

[android-developers] Re: Android MYSQL

2010-03-11 Thread Bob Kerns
I would very explicitly NOT develop a MySQL App on the Android. While you could perhaps get the JDBC driver to run on Android, this is the wrong approach from a architectural standpoint. You won't get the performance, scalability, maintainability, reliability, nor security characteristics you'd li

[android-developers] Re: Android MYSQL

2010-03-10 Thread saru
Who told to develop mysql application in android. Android does not support mysql database. rather try to use SQlite database On Mar 9, 4:45 am, Si458 wrote: > Hiya, > > Im currently trying to develop a mysql app on the android, ive got the > basics working and ive also managed to get the JDBC wor