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

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

waiting for feedback

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

troubleshooting
waiting for feedback

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

waiting for feedback

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

troubleshooting
waiting for feedback

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

troubleshooting
waiting for feedback

_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...

enhancement:JDBC

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

enhancement:SQLite
impacts:JNI

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

waiting for feedback

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

waiting for feedback

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

bug
enhancement:JDBC