This is a port of the firebird jdbc driver (Jaybird):
http://www.firebirdsql.org/en/jdbc-driver/
Follow Android Firebird JDBC Driver Port
Other Useful Business Software
MongoDB Atlas runs apps anywhere
MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
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???