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
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
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???