Questions tagged [jaybird]

Jaybird is a DBC driver for the Firebird database server. Use this tag for questions about using Jaybird to connect to Firebird.

Jaybird is a JDBC driver for the Firebird database. The Jaybird driver is based on the JDBC standard.

Jaybird is free software distributed under the LGPL.

Resources

See also

141 questions
1
vote
1 answer

Use WildFly module both datasource and connectionFactory

I have a module in Wildfly to use as my datasource to Firebird. It works great
erickdeoliveiraleal
  • 708
  • 2
  • 9
  • 21
1
vote
1 answer

Jaybird 3 and database-file properties (page size, SQL Dialect, ODS major/minor)

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…
1
vote
1 answer

Why won't my Java JDBC to Firebird database connection disconnect?

I am using the following code to connect to a firebird database public static Connection dbStatic; ... public void getConnection(){ FBWrappingDataSource DataSource = new FBWrappingDataSource(); …
Jonathan Elkins
  • 455
  • 5
  • 21
1
vote
1 answer

How to add a string variable to a SQL query on a jdbc firebird connection

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…
Sven D
  • 53
  • 6
1
vote
0 answers

Jaybird driver difficulty, cannot connect to firebird server

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.…
Maurice
  • 6,698
  • 9
  • 47
  • 104
1
vote
3 answers

Error java.lang.NoClassDefFoundError: org.firebirdsql.jdbc.FBDataSource on Android

Connection to Firebird database: When I try to connect my android app to Firebird database I got following errors. My LogCat : FATAL EXCEPTION : main …
user6313452
  • 161
  • 1
  • 2
  • 10
1
vote
1 answer

Hibernate, GDS Exception. 335544569. Dynamic SQL Error with Embedded Firebird

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 …
Maruthi
  • 33
  • 1
  • 6
1
vote
1 answer

Embedded Firebird and Log4j configuration

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…
Maruthi
  • 33
  • 1
  • 6
1
vote
0 answers

Error connecting to Firebird with JDBC

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…
dmateev
  • 64
  • 2
  • 11
1
vote
1 answer

getGeneratedKeys() doesn't work with JNDI in WildFly with Firebird

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 =…
erickdeoliveiraleal
  • 708
  • 2
  • 9
  • 21
1
vote
0 answers

ParseException: bad class file magic (cafebabe) or version (0034.0000)

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…
RedLEON
  • 281
  • 2
  • 7
  • 19
1
vote
2 answers

No suitable driver found for jdbc in Java 8 with Maven

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…
user2070369
  • 3,970
  • 6
  • 22
  • 32
1
vote
0 answers

Unable to fetch data from Firebird 1.5 MATLAB

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…
1
vote
1 answer

firebird : SQL error code = -504 Invalid cursor reference

we use firebird, gwt ( DATANUCLEUS, persistence objet) to develop an Web Applicaiton. Map props = new HashMap(); props.put("javax.jdo.PersistenceManagerFactoryClass", …
1
vote
5 answers

Unexpected GDS Exception: 335544726. Error reading data from the connection

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…
Erick Sperandio
  • 198
  • 2
  • 14