How to connect to Firebird DB on Android

I need to connect an Android application to my Firebird DB

Does anyone know how to do this?

write the code!

+5
source share
3 answers

I am not very familiar with Firebird, but I think the best approach is to use some kind of web service (RESTful?) That allows your Android client to interact with the database. This is a solution that is commonly used for most applications, since you cannot directly connect to the database with Android. This is also good from a design point of view, because your application does not depend on the underlying database itself, but rather on a web service that acts as an intermediary, which means that you can swap the database implementation without affecting the client.

+3
source

Jaybird ( JDBC Firebird) Android, - "". , RemObjects DataAbstract Android (/-) Firebird: http://www.remobjects.com/da/java.aspx

+2

You can try this Jaybird port for Android: http://sourceforge.net/projects/androidjaybird

+1
source

All Articles