In version of jaybird 2 I can get the database page size via gds isc_info_page_size. But now I can't find out - is it possible in jaybird 3.0 to do that?
I have host:port, database file name/alias and login/password - and I do not want to use…
I am using the following code to connect to a firebird database
public static Connection dbStatic;
...
public void getConnection(){
FBWrappingDataSource DataSource = new FBWrappingDataSource();
…
I am trying to query a Firebird database from a Java application. This query contains 2 integer variables and 1 string. The query looks like this:
Statement statement = conn.createStatement();
ResultSet rs = statement.executeQuery("select * from…
I've been trying to connect to a localhost firebird server via Netbeans IDE. When I test the connection I get a connection rejected by remote interface error. I tried to connect using the password masterkey and my personal password but to no avail.…
Connection to Firebird database:
When I try to connect my android app to Firebird database I got following errors.
My LogCat :
FATAL EXCEPTION : main
…
I get this exception when I configure Hibernate for embedded firebird. this seems to be a dialect issue (not sure though).
Here is the situation I am in:
I am trying to build an web application using Spring, Hibernate, Firebird
(embedded). I …
I am trying to configure and use embedded Firebird with log4j. Essentially I want to log my entries to a DB table (Firebird). I am unable to do so with "Connection Refused" error complete call stack pasted below.
There was one possibility for this…
I am trying to connect a Java application to a Firebird database (I don't have access to the source code).
The application requires Driver class, JDBC URL, Username and Password.
No matter what parameters I am passing, I am getting the following…
I was using getGeneratedKeys() with direct class invocation like this:
public static Connection getConnection() throws Exception {
try {
Class.forName("org.firebirdsql.jdbc.FBDriver");
String sql =…
I tried even with compileOptions (build.gradle) and JDK 1.7 getting this error:
Error:com.android.dx.cf.iface.ParseException:
bad class file magic (cafebabe) or version (0034.0000)
I just wanna connect to firebird database with jaybird…
I have a Maven console application using JDBC and FirebirdSQL and Java 8, according to the specification, there is not need to add the class registration anymore, so the line Class.forName("org.firebirdsql.jdbc.FBDriver"); is commented, but when I…
I have setup a connection to a remote Firebird 1.5 Server (WIN7) through MATLAB RR2015b (MAC Yosemite) and I am able to access it freely through the Database Explorer in MATLAB. However, I am facing some issues when I try to do the same through a .m…
we use firebird, gwt ( DATANUCLEUS, persistence objet) to develop an Web Applicaiton.
Map props = new HashMap();
props.put("javax.jdo.PersistenceManagerFactoryClass",
…
I have a Web app running on Apache Tomcat 6, using ZK, Hibernate and Jaybird JDBC for accessing a Firebird database. For some unknown reason, after a not yet mapped operation in the app that performs a dynamic SQL, it crashes with the following…