A robust, powerful, and very simple ORM android database library with annotation processing.
The library is built on speed, performance, and approachability. It not only eliminates most boiler-plate code for dealing with databases, but also provides a powerful and simple API to manage interactions.
Let DBFlow make SQL code flow like a steady stream so you can focus on writing amazing apps.
DBFlow is built from a collection of the best features of many database libraries in the most efficient way possible. Also, it is built to not only make it significantly easier to deal with databases on Android, but also to provide extensibility. Don't let an ORM or library get in your way, let the code you write in your applications be the best as possible.
- Extensibility: The main table object,
Model
, is just an interface. No subclass required, but as a convenience we recommend usingBaseModel
. You can extend non-Model
classes in different packages and use them as your DB tables. Also you can subclass otherModel
to join the@Column
together, and again they can be in different packages. - Speed: Built with java's annotation processing code generation, there's almost zero runtime performance hit by using this library (only reflection is creation of the main, generated database module's constructor). This library saves hours of boilerplate code and maintenance by generating the code for you. With powerful model caching (multiple primary key
Model
too), you can surpass the speed of SQLite by reusing where possible. We have support for lazy-loading relationships on-demand such as@ForeignKey
or@OneToMany
that make queries happen super-fast. - SQLite Query Flow: The queries in this library adhere as closely as possible to SQLite native queries.
select(name, screenSize).from(Android.class).where(name.is("Nexus 5x")).and(version.is(6.0)).querySingle()
- Open Source: This library is fully open source and contributions are not only welcomed, but encouraged.
- Robust: We support
Trigger
,ModelView
,Index
,Migration
, built-in ways to manage database access, and many more features. - Multiple Databases, Multiple Modules: we seamlessly support multiple database files, database modules using DBFlow in other dependencies, simultaneously.
- Built On SQLite: SQLite is the most widely used database engine in world and using it as your base, you are not tied to a limited set of platforms or libraries.
Starting with 3.0.0-beta1+, Changes exist in the releases tab.
For pre-3.0 changes, check out here
For more detailed usage, check out it out here
If you use KAPT (Kotlin's APT), then skip this first step.
We need to include the apt plugin in our classpath to enable Annotation Processing:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
allProjects {
repositories {
// required to find the project's artifacts
maven { url "https://www.jitpack.io" }
}
}
Add the library to the project-level build.gradle, using the apt plugin to enable Annotation Processing:
apply plugin: 'com.neenbedankt.android-apt'
def dbflow_version = "3.1.1"
// or dbflow_version = "develop-SNAPSHOT" for grabbing latest dependency in your project on the develop branch
// or 10-digit short-hash of a specific commit. (Useful for bugs fixed in develop, but not in a release yet)
dependencies {
apt "com.github.Raizlabs.DBFlow:dbflow-processor:${dbflow_version}"
// use kapt for kotlin apt
compile "com.github.Raizlabs.DBFlow:dbflow-core:${dbflow_version}"
compile "com.github.Raizlabs.DBFlow:dbflow:${dbflow_version}"
// sql-cipher database encyrption (optional)
compile "com.github.Raizlabs.DBFlow:dbflow-sqlcipher:${dbflow_version}"
// kotlin extensions
compile "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${dbflow_version}"
}
// if you're building with Kotlin
kapt {
generateStubs = true
}
I welcome and encourage all pull requests. It usually will take me within 24-48 hours to respond to any issue or request. Here are some basic rules to follow to ensure timely addition of your request:
- Match coding style (braces, spacing, etc.) This is best achieved using CMD+Option+L (Reformat code) on Mac (not sure for Windows) with Android Studio defaults.
- If its a feature, bugfix, or anything please only change code to what you specify.
- Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge :)
- Pull requests must be made against
develop
branch. Any other branch (unless specified by the maintainers) will get rejected. - Have fun!