sqlite-jdbc
sqlite-jdbc copied to clipboard
SQLite JDBC Driver
Hello, When running version 3.28.0 on ppc64 I am getting the following error: ``` OpenJDK 64-Bit Server VM warning: You have loaded library /tmp/sqlite-3.28.0-85c825b5-524d-4d56-97a2-440071c1f923-libsqlitejdbc.so which might have disabled stack guard....
SQLite 3.29.0 has been released on July, 10th. Is there already a plan to update to that version?
# # A fatal error has been detected by the Java Runtime Environment: # # SIGILL (0x4) at pc=0x47c096ac, pid=873, tid=0x40cf7470 # # JRE version: Java(TM) SE Runtime Environment (8.0_221-b11)...
Hi all, I have a PreparedStatement but when calling getMoreResults() on it, it is closed as a side effect. Maybe we are using it wrong, but the javadoc of the...
After running performance test, I found the latency of `reset` function is hundreds of times of `step`. See details in the chart below. Any suggestions for why `reset` function takes...
SQLite 3 supports [**The Error And Warning Log**](https://www.sqlite.org/errlog.html), but not found in sqlite-jdbc.
It looks like the `table_info` command that is issued in the `getColumns` call is ignoring the Schema name. It should've been `PRAGMA schema.table_info(table-name)` instead of `PRAGMA table_info(table-name);` **Ref:** - https://github.com/xerial/sqlite-jdbc/blob/master/src/main/java/org/sqlite/jdbc3/JDBC3DatabaseMetaData.java#L1239...
I understand that if multiple threads manage to get to this method, the writes to isLoaded and loadSucceeded will be racy. Some synchronization should be performed around these variables. See...
I have a database with approx. 100 tables and an application using Spring+Hibernate. After upgrading from Hibernate 4.3.11 to 5.4.12 I get this error: ` "[SQLITE_ERROR] SQL error or missing...
# Steps to reproduce: * Create an empty SQLite database with a table which has a date field. * Insert some records into the database with date value as ""...