Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to connect to firebird DB on android

I need to connect my android application to my firebird DB

do someone knows how to do this?

please write the code!

like image 365
FilipeFaria Avatar asked May 06 '12 19:05

FilipeFaria


1 Answers

I'm not particularly familiar with Firebird, but my guess is the best approach would be to use a web service of some sort (RESTful?) which allows your Android client to communicate with the database. This is the solution that is typically used for most apps since you can't connect directly to the database from Android. It's also good from a design standpoint because your application does not depend on the underlying database itself, but rather the web service which acts as a mediator, meaning you can swap database implementations without impacting your client.

like image 164
Tyler Treat Avatar answered Sep 23 '22 23:09

Tyler Treat