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…
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…
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…
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…
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…
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…
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…
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…
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…
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…
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
…
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…
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…
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…