SQLiteProvider alternatives and similar packages
Based on the "ORM" category.
Alternatively, view SQLiteProvider alternatives based on common mentions on social networks and blogs.
-
greenDAO
greenDAO is a light & fast ORM solution for Android that maps objects to SQLite databases. -
realm-java
Realm is a mobile database: a replacement for SQLite & ORMs -
LitePal
An Android library that makes developers use SQLite database extremely easy. -
ActiveAndroid
Active record style SQLite persistence for Android -
sqlbrite
A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations. -
DBFlow
A blazing fast, powerful, and very simple ORM android database library that writes database code for you. -
android-database-sqlcipher
Android SQLite API based on SQLCipher -
requery
requery - modern SQL based query & persistence for Java / Kotlin / Android -
android-sqlite-asset-helper
An Android helper class to manage database creation and version management using an application's raw asset files -
ormlite
ORMLite Android functionality used in conjunction with ormlite-core -
couchbase-lite-android
Lightweight, embedded, syncable NoSQL database engine for Android. -
sprinkles
Sprinkles is a boiler-plate-reduction-library for dealing with databases in android applications -
SimpleNoSQL
A simple NoSQL client for Android. Meant as a document store using key/value pairs and some rudimentary querying. Useful for avoiding the hassle of SQL code. -
orman
lightweight and minimalist ORM for Java/Android. works with SQLite & MySQL. (not actively maintained) -
LiteOrm
LiteGo is a Java-based asynchronous concurrency library. It has a smart executor, which can be freely set the maximum number of concurrent at same time , and the number of threads in waiting queue. It can also set waiting policies and overload strategies. -
Android-AnnotatedSQL
Android library for auto generating SQL schema and Content provider -
Kripton Persistence Library
A Java/Kotlin library for Android platform, to manage bean's persistence in SQLite, SharedPreferences, JSON, XML, Properties, Yaml, CBOR. -
ormdroid
ORMDroid is a simple ORM persistence framework for your Android applications. -
SqliteMagic
Compile time processed, annotation driven, no reflection SQLite database layer for Android -
RestorableSQLiteDatabase
A wrapper around Android's SQLiteDatabase with restoring capability -
AndroidQueryORM
AndroidQuery is an Android ORM for SQLite and ContentProvider which focuses on easy of use and performances thanks to annotation processing and code generation -
Cupboard
Simple persistence that gets out of your way and is easy to add to your existing code base
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SQLiteProvider or a related project?
README
sqlite-provider

A simplification of database access for Android.
Description
sqlite-provider implements a ContentProvider for you that allows database access using Uris The library is meant to augment the ContentProvider interface to fit SQLite in a more pronounced way. The aim is to set convention on queries via Uris.
Adding to your project
To start using this library, add these lines to the build.gradle
of your project:
repositories {
jcenter()
}
dependencies {
compile 'com.novoda:sqlite-provider:2.0.0'
}
Upgrading from < 1.0.4
Please note the name change from sqliteprovider-core
to sqlite-provider
when the version went beyond 1.0.4 (all the way back in 2014!). If you're upgrading from a version that old, don't forget to change the name too!
Simple usage
Simple example source code can be found in this demo module: Android Simple Demo
Advanced queries & source code can be found in this demo module: Android Extended Demo
Links
Here are a list of useful links:
- We always welcome people to contribute new features or bug fixes, here is how
- If you have a problem check the Issues Page first to see if we are working on it
- For further usage or to delve more deeply checkout the Project Wiki
- Looking for community help, browse the already asked Stack Overflow Questions or use the tag:
support-sqlite-provider
when posting a new question
*Note that all licence references and agreements mentioned in the SQLiteProvider README section above
are relevant to that project's source code only.