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
0
votes
0 answers

Intermittent connection success to Firebird 1.5.4 using RazorSQL 9.3 and included (current) Firebird JDBC driver

I'm connecting to a set of Firebird 1.5.2 servers (2.4.20 Linux kernel - circa 2003. These are a closed, end of life system serving a telephony application (Service Control Point) in an SS7 switching environment. They will not ever be upgraded to…
0
votes
1 answer

java.util.ServiceConfigurationError: org.firebirdsql.gds.impl.GDSFactoryPlugin: Error reading configuration file from Java Stored Procedure in Oracle

I loaded with loadjava tool Jaybird-3.0.9-JDK_1.8 JDBC driver and my java class to Oracle database. All classes were resolved. When I run Java Stored Procedure from Oracle first time got error ORA-29532: Java call terminated by uncaught Java…
0
votes
0 answers

Subscribe to Firebird events using a Jdbc driver for connection?

I am writing an application in a B4J environment with data connection on Firebird. https://www.b4x.com/b4j.html B4J uses the Firebird Jdbc driver for communication between the application and the db server. I would need to link the application code…
amorosik
  • 1
  • 1
0
votes
0 answers

How to Use JDBC Driver (Jaybird) on Android?

I had done a lot of searches about how to connect an android app to a firebird DB but still cannot do it. First of all this is my code to create a connection: @NonNull public static void createConnection() throws SQLException { if (connection ==…
Acauã Pitta
  • 654
  • 1
  • 9
  • 16
0
votes
0 answers

Error 335544421. connection rejected by remote interface

I have the code package com.redsoft.company.dao; import org.firebirdsql.jdbc.FBDriver; import java.sql.Connection; import java.sql.DriverManager; public class AbstractDao { private static final String USER = "root"; private static final…
Aleksandr Zorin
  • 47
  • 2
  • 11
0
votes
1 answer

Querying Firebird database results in Java Heap Space error

I'm having some trouble with Firebird. Some SQL queries are getting the error "Java Heap Space". I've revised all queries and seems to be right. But, after doing some tests, I've noted that the error only occurs when SQL query has no limits of…
0
votes
1 answer

How to connect a Firebird data base with Knime?

I need connect my Firebird data base (.IDB) in KNIME. I used Database Connector node, but I have this notice: ERROR Database Connector 0:1 Execute failed: Could not create connection to database: Invalid connection string …
0
votes
1 answer

Specify firebird connection dialect, not database dialect

I have a Firebird database which is using Dialect 1. Some old Delphi apps MUST have it using Dialect 1 or certain queries will fail. The issue is, I'm using ColdFusion to communicate with the database for our web applications and it needs Dialect 3.…
Phil
  • 4,029
  • 9
  • 62
  • 107
0
votes
0 answers

How to use FBEventManager in Java Servlet

I am trying to add a Firebird database insert notification in my web app based on Java Servlets and JSP. I just find that the Jaybird holds an events API but I don't know how to implement those methods.
Moh Lamine
  • 72
  • 1
  • 9
0
votes
2 answers

Calling Firebird Stored procedure from Java Servlet

I have a Firebird Database with some stored procedure, and I am developing a Java web/database application. I want to know if it is possible and how to call those stored procedures from a java Class or a Servlet. example: Stored procedure deletep,…
Moh Lamine
  • 72
  • 1
  • 9
0
votes
0 answers

Connectjboss 4 with Firebird 3 via Jaybird 2.214-jdk1.6

I recently updated a firebird 1.5 database, which is used in a jboss 4 environment with java 1.4 to firebird 3. The upgrade works fine from the DB side. but it seems that I have problems connecting it to the jboss 4. What have I done so far: I…
0
votes
1 answer

Java JDBC type conversion (Firebird / Jaybird): check value/type compatibility before using getter or updater ResultSet method?

If I understand (and test a sample JDBC code; using Jaybird for Firebird) well, even using a proper (= respecting the type mapping) updater method (e.g. ResultSet.updateString), or maybe PreparedStatement parameter, can bring a "conversion…
Tom
  • 423
  • 1
  • 4
  • 13
0
votes
0 answers

Case Sensitive Lower Table and Column

Is it possible to return table and column names with case sensitive lower?
Elvis Reis
  • 155
  • 4
  • 12
0
votes
1 answer

Driver class not found: org.firebirdsql.jdbc.FBDriver

I have problem with update from firebird 2.1 to 2.5. If I do it, system respond me this: Unable to connect to database. Driver class not found: org.firebirdsql.jdbc.FBDriver Is it problem of PATH ? update_database: [echo] Updating database…
Tomasito
  • 306
  • 2
  • 15
0
votes
0 answers

Jaybird 3 and default codepage via properties

I continue to dig (or play) with jaybird 3 and got known error "Caused by: java.sql.SQLNonTransientConnectionException: Connection rejected: No connection character set specified (property lc_ctype, encoding, charSet or localEncoding). Please…