[android-developers] Re: Connect to an online SQL database

2008-10-02 Thread Ludwig
IMHO, the conceptually correct way to do this is with a ContentProvider, which exposes a database-like interface and can behind the scenes access any datasource you wish (yes, it can go across the net). 'Just' marshal your requests into a web request and parse the response into something like a

[android-developers] Re: Connect to an online SQL database

2008-10-01 Thread Billsen
I think you may try to access database in your phone directly. If that is the case, it is hard to do since there are no database drivers for Oracle, MySql, MS SQL server in android. If you really want to push data from your phone to database, you can develop application in your web server to

[android-developers] Re: Connect to an online SQL database

2008-10-01 Thread Mast3rpyr0
hmm that kinda sucks, maybe a PHP script run from the phoen on the webserver to get the appropriate data. but how could i do that behind the scenes? On Oct 1, 5:40 pm, Billsen [EMAIL PROTECTED] wrote: I think you may try to access database in your phone directly. If that is the case, it is