sqlite-jdbc
sqlite-jdbc copied to clipboard
SQLite JDBC Driver
Calls to `execute()` check for arity mismatch by comparing the number of params not to the actual number of values, but the [length of the value array](https://github.com/xerial/sqlite-jdbc/blob/master/src/main/java/org/sqlite/core/DB.java#L798). The [value array...
I'm still getting this error with latest (3.16.1) version on linux server when excute jar-file using sqlite-jdbc in parallel. It occurred after 3.15.0, but it didn't occur before 3.14 And...
Device: samsung s5 with android 6.0.0, api23, with permissions granted Here's the dependency parts of the gradle build file ```` dependencies { compile 'com.android.support:support-v4:23+' compile 'com.android.support:design:23.+' //needed for UI menuing...
Hello, I got an table locked error after query sqlite_master. For instance, I tried "SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND name='INPUT_TABLE'", then the table "INPUT_TABLE" is locked. And I...
I'm using sqlite-jdbc in the scala app. I deploy this app as a docker container into the local kubernetes cluster. And sometimes my app crashes with segmentation fault. Here are...
_This is an unresolved bug (2014) migrated from [bitbucket](https://bitbucket.org/xerial/sqlite-jdbc/issues/136/sqlexception-when-calling-setreadonly-in). I did not find it in github issues and it is still a problem._ ---- Since version 3.7.15-M1, we see the...
I'm using this JDBC driver in the Apache Incubator Guacamole project, with MyBatis and Guice, to try to make the SQLite database available as an authentication back-end for the product....
where is the implement code of the json_each function, i want to define one method that is similar but something different, please help me
Hi, I am looking for an option to protect the SQLite database being used by one of my applications. The main idea is to protect the database from unauthorized users....
Hi, right now there are multiple ways to retrieve the last inserted rowid of an insert. None of them is very good. - Query for "SELECT last_insertrowid()": -> Doesn't work...