JOUNAYD wrote: > I would like to know if it it's possible to acesse A distant MySQL > data base from Android.
If you write a Web service wrapper around the database, yes. If you want to use a MySQL client library on the device, there are three areas of concern I can think of off the top of my head this early in the morning: 1. JDBC is not built into Android 2. Even if it were, I am not certain that it or the MySQL driver use the subset of Java that Android offers 3. Even if that all worked, JDBC (and possibly the MySQL driver) targets an environment where there is quick, near-guaranteed access from the client to the database; an Android client has slower, sporadic access to the database -- Mark Murphy (a Commons Guy) http://commonsware.com The Busy Coder's Guide to Android Development -- coming in June 2008! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

