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
4
votes
2 answers

Failed to load Firebird client library: Embedded database with Jaybird

I've been working on a program that connects to a Firebird database and listens for events. I'm trying to get it to work with an embedded database. EventManager em = new…
jongusmoe
  • 676
  • 4
  • 16
3
votes
1 answer

Set default charset on a database created with FBManager

I've created a database using jaybirds' class FBManager, but I can't find a way to specify a default charset for it (defaults as NONE). Am I missing something? Is it possible to define it after the database was created? This is the snippet used to…
Peba
  • 440
  • 4
  • 14
3
votes
1 answer

date time result from sql database is not same in clojure jdbc

I have problem with timestamp in database(firebird) with jdbc data in database timestamp 1994-10-12T00:00:00.000000000-00:00 I test with python and result is same in database but when I use jdbc(clojure) result is…
3
votes
1 answer

Does the latest Firebird JDBC driver have a virus?

I recently downloaded the latest Firebird JDBC driver (Jaybird 3.0.4 for Java 8) from the Firebird.org website. Windows Defender has quarantined the download saying it is infected with the Trojan:Java/Tisifi.C virus. The same thing happens with the…
Terry Thompson
  • 489
  • 2
  • 15
3
votes
2 answers

spring hibernate java.sql.SQLException: The result set is closed

I have a problem with Spring application and getting data from database with DTO. I got "java.sql.SQLException: The result set is closed". Database is Firebird (Jaybird version 3.0.3). My dto file: package ekoncept.dto; import ... public class…
Olek
  • 319
  • 8
  • 24
3
votes
1 answer

Firebird 3.0 Encryption with AES128 plugin - Unable to connect

I'm using Firebird 3 with encryption via the AES128 plugin found here. https://www.ibphoenix.com/products/software/encryptionplugin I have successfully encrypted the database, and I am able to connect and query it using isql however I am not able…
Phil
  • 4,029
  • 9
  • 62
  • 107
3
votes
1 answer

How to pass the charset and the Firebird's role using R

I'm trying to execute a select in Firebird using the R language. I know that Firebird needs a charset and role parameter, but I don't know how to pass this in R language. Default message without inform the charset WARNING: No connection…
3
votes
2 answers

Can't connect to Firebird (Ubuntu)

I'm new to Ubuntu and I just installed it on a computer. I installed Samba and shared the folders "/samba" and "/hd". I downloaded and installed Firebird and copied my database that I created on Windows and put it in "/samba". This is my Java…
Bolaum
  • 45
  • 1
  • 4
3
votes
1 answer

BIRT Report Designer empty DataSet scripting

I am using BIRT Report Designer 4.4.0 and I kept getting the error message org.eclipse.birt.report.engine.api.EngineException: Cannot fetch the next data row. org.eclipse.birt.report.data.oda.jdbc.JDBCException: Cannot move down to next row in the…
jera
  • 302
  • 4
  • 30
3
votes
2 answers

"Failed to load module" error for Firebird datasource on WildFly 8.1.0.Final

The server startup error message is: 16:08:37,829 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 27) JBAS014613: Operation ("add") failed - address: ([ ("subsystem" => "datasources"), ("jdbc-driver" =>…
mjn
  • 36,362
  • 28
  • 176
  • 378
3
votes
1 answer

Move ResultSet cursor back in Firebird

I am using Firebird. I have came to know that in Firebird we can't move the result set cursor back. It's only supported TYPE_FORWARD_ONLY while TYPE_SCROLL_INSENSITIVE is not supported yet. In my application I want to move the result set cursor one…
Waqas Ali
  • 1,642
  • 4
  • 32
  • 55
3
votes
1 answer

Error using Jaybird and Android

I created an application on android with Firebird direct wifi connect. Sometimes I get this error: FATAL EXCEPTION: AsyncTask #4 java.lang.RuntimeException: An error occured while executing doInBackground() at …
2
votes
1 answer

ANTLR Tool version 4.10.1 used for code generation does not match the current runtime version 4.7ANTLR Runtime version 4.10.1

I'm not able to solve the problem with the version of Jaybird's libs package: jaybird-jdk17:3.0.10 where the antlr4-runtime:4.7 is conflicting with the hibernate-core6.1.5Final lib where there is another antlr4:4.10…
2
votes
1 answer

SQL Selecting from very long list of values

I need to select based on a big list: SELECT ... FROM tb WHERE tb.cl IN (?, ?, ?, ..................many) I can't do it this way because the driver implementation (Jaybird) limits the query to 1500 parameters max, also I can't select/load all and…
Lucas Noetzold
  • 1,670
  • 1
  • 13
  • 29
2
votes
1 answer

Firebird and Android JDBC Driver

have problem with Firebird. I have never work with DB. DB on server firebird 1.5. Add lib: firebird-full-2.2.4 to libs folder Add this to Gradle: implementation fileTree('libs') Add this to…
POMAIIIUK
  • 439
  • 4
  • 19
1
2
3
9 10