This is a port of the firebird jdbc driver (Jaybird):
http://www.firebirdsql.org/en/jdbc-driver/
Follow Android Firebird JDBC Driver Port
You Might Also Like
Our Free Plans just got better! | Auth0 by Okta
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your secuirty. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
Very easy to use and very powerful.
-
konradsnsk: there is file called "isc_encodings.properties" under "assets" directory. I had to comment all encodings related to DOS and then it works perfectly.
-
This works fine as: Properties ParamConnection = new Properties (); ParamConnection.setProperty ("user", "SYSDBA"); ParamConnection.setProperty ("password", "masterkey"); / / ParamConnection.setProperty ("encoding", "WIN1251"); String sCon = "jdbc:firebirdsql:192.168.0.97/3050:TestDB"; / / register Driver Class.forName ("org.firebirdsql.jdbc.FBDriver"); / / Get connection Connection con = DriverManager.getConnection (sCon, ParamConnection); And if you remove the comment in a rowParamConnection.setProperty ("encoding", "WIN1251"); An error occurs: 08-08 02:46:07.225: E / AndroidRuntime (1376): FATAL EXCEPTION: main 08-08 02:46:07.225: E / AndroidRuntime (1376): java.lang.IllegalStateException: Could not execute method of the activity 08-08 02:46:07.225: E / AndroidRuntime (1376): at android.view.View $ 1.onClick (View.java: 3599) ..... ..... more
-
how it works???