sqlite-jdbc icon indicating copy to clipboard operation
sqlite-jdbc copied to clipboard

SQLite JDBC Driver

Results 184 sqlite-jdbc issues
Sort by recently updated
recently updated
newest added

I've been playing with the Foreign API - the replacement for JNI that's been incubating since Java 14. I have managed to hack a version of the sqlite-jdbc code to...

wontfix

We are using the xerial driver for the armv5 and armv7. The armv7 is working correctly with the native binaries. The armv5 however results into crashes: ``` # # A...

troubleshooting

Sqlite has a DBSTAT virtual table, enabled if Sqlite is compiled using SQLITE_ENABLE_DBSTAT_VTAB. https://sqlite.org/dbstat.html Is it possible to include this in sqlite-jdbc? Then I would be able to ask table...

enhancement:SQLite
enhancement:build

The handling of the queryTimeout in JDBC3Statement was not compliant to the JDBC specification in several ways, breaking Hibernate: - The queryTimeout was being applied to the whole connection, as...

enhancement:JDBC
waiting for feedback
needs rework

This PR updates some code about file/path handling to use `java.nio` and Java 8 methods. It also uses a lazy directory stream for the cleanup of old native libs, which...

review wanted

There are some JDBC 'large' methods that return a `long` instead of an `int`, which are not supported at the moment. That's the only difference, and it is advised to...

review wanted

While looking at #735 i noticed that we have similar classes in `org.sqlite.core`, `org.sqlite.jdbc3` and `org.sqlite.jdbc4`. For example for `Statement`: - `abstract class CoreStatement` - `abstract class JDBC3Statement extends CoreStatement`...

review wanted

@mastervol reported this in https://github.com/gotson/komga/issues/945 ``` Failed to load native library:sqlite-3.39.2.0-4862e885-20d4-47f7-a1f8-ed7c54fd2855-libsqlitejdbc.so. osinfo: Linux/armv7 java.lang.UnsatisfiedLinkError: /tmp/sqlite-3.39.2.0-4862e885-20d4-47f7-a1f8-ed7c54fd2855-libsqlitejdbc.so: /tmp/sqlite-3.39.2.0-4862e885-20d4-47f7-a1f8-ed7c54fd2855-libsqlitejdbc.so: failed to map segment from shared object ``` The device is a Synology DS216...

troubleshooting

Hi, I recently updated my Macbook (Intel Core i7) to OSX Monterey(12.2.1) and cannot load the Spatialite extension since then. Here is the error log: [hs_err_pid51593.log](https://github.com/xerial/sqlite-jdbc/files/8139451/hs_err_pid51593.log) I installed libspatialite with...

troubleshooting

If the temp directory has too many files, the call to File.listFiles in SQLiteJDBCLoader.cleanup can cause an out of memory error. In order to filter the file list, listFiles first...

bug