requery / requery

requery - modern SQL based query & persistence for Java / Kotlin / Android
Apache License 2.0
3.14k stars 246 forks source link

Implement SupportSQLiteDatabase instead of SQLiteDatabase #730

Open aegis123 opened 6 years ago

aegis123 commented 6 years ago

Hi are you going to implement SupportSQLiteDatabase instead of SQLiteDatabase for android? I saw that there was already a merge request merged merge request merged on sqlite-android and was wondering are you going to implement that here to?

npurushe commented 6 years ago

SupportSQLiteDatabase is just an interface provided in the Android support components. Google so far has provided only one implementation that just forwards to android.database.sqlite.SQLiteDatabase. Requery sqlite-android now offers another implementation, the purpose of that is to support cases where Google uses SupportSQLiteDatabase.

Requery already provides the ability to use the OS Sqlite, Requery-sqlite and SqlCipher, is there another implementation you're looking to see supported?

aegis123 commented 6 years ago

it should make it easier to maintain. since SQLCipher is also discussing switching to the SupportSQLiteDatebase SQLCipher disscussion.