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

Android SQLite support library

Results 40 sqlite-android issues
Sort by recently updated
recently updated
newest added

You can inspect the on device db from inside android studio on 26+ api level devices using the [_app inspection_ tool ](https://developer.android.com/studio/inspect/database#open). This tooling doesn't work with io.requery sqlite and...

Bintray is getting sunsetted on May 1st, 2021: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

enhancement

Hello, I found a few examples of adding custom tokenizers on GitHub, but I feel that I have changed too much code, and I am worried that there will be...

Hello I found an interesting bug that does not occur on the standard android library. The point is that when I attach the second base, only main SELECT works, but...

I am sporadically working on [a test battery to exercise `SupportSQLiteDatabase` implementations such as yours](https://gitlab.com/commonsguy/support-db-tests). My tests work fine with Requery 3.21.0 and 3.23.1. However, with 3.24.0, the tests crash...

bug

`sqliteDistributionUrl = 'https://sqlite.org/2021/sqlite-amalgamation-3350500.zip'` can change to this: `sqliteDistributionUrl = 'http://sqlite.org/2021/sqlite-amalgamation-3350500.zip'` It is troublesome to use httpclient 4.5 in apache's httpcomponents to access https。

This PR is a follow-up to https://github.com/requery/sqlite-android/issues/124. Is this something that can be merged into this repo, instead of us having to fork it?

I had a need to embed the latest SQLite in my application. I have included your library and tried a simple query: ``` SELECT first_name FROM clients ORDER BY first_name...

The `RequerySQLiteOpenHelperFactory` does not seem to have an option for me to provide my own cursor factory. Is there a recommended way to do this? So far, it seems like...

Recently API 30 has introduced a new API called [execPerConnectionSQL](https://developer.android.com/reference/android/database/sqlite/SQLiteDatabase#execPerConnectionSQL(java.lang.String,%20java.lang.Object[])), it allows clients to execute `PRAGMA` statements per connection. It would be nice if Requery could introduce this API that...