sqlite-jdbc
sqlite-jdbc copied to clipboard
SQLite JDBC Driver
(While Hibernate does not officially support SQLite, there are SQLiteDialect files for Hibernate floating around.) I found that for some reason, whenever Hibernate closes a Statement, the last thing it...
In my application, I have used Hibernate-Sqlite configuration to access the data from database file. Library used : `compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.23.1'` It seems, I am seeing...
Often, in-memory databases are used for unit testing, and therefore the database needs to already have a certain schema. You can argue that I can run the SQL script to...
Hello everyone, I'm not sure if this is much of an issue but I encountered it in a code review and seemed a bit out of spec to me, so...
In Hungary we use a lot of special characters, like ő or ű. When I tested the possibility of the upgrade from version 3.8.6 to 3.23.1 I experienced many encoding...
Attempt to open a database with a pathname of more than 255 characters results in the following error: ``` Caused by: java.sql.SQLException: The database has been closed at org.sqlite.core.NativeDB.throwex(NativeDB.java:471) at...
Hello I have an issue with library on BLOB field. 1 file database, 1 SELECT statement for return BLOB field. case 1) Simple Hello world program. ```java import java.sql.*; public...
In 3.23 some checks were added to the prepared statements parameters. https://github.com/xerial/sqlite-jdbc/commit/fd40cf60914d4063b889f0a08fdad21a4e957070#diff-9f9639750b991bb537666d8b5550d4e7 The problem is one of the commits instead of clearing the array instead created a mask as a...
Hey guys, I uploaded our application to apple to get notarized (new in macOS 10.14): _xcrun altool --notarize-app -f DMG_FILE --primary-bundle-id BUNDLE_ID -u USERNAME -p PASSWORD_ The result is that...
Based of #199 it seems xerial doesn't support true concurrent access to SQLite. Just to confirm the current expected behavior of xerial: 1. Xerial's sqlite is compiled with SQLITE_THREADSAFE=1. This...