android dbflow教程,DBFlow - 一个速度极快,功能强大,而且非常简单的 Android 数据库 ORM 库...

625332134c6f4d4600884b99daebf603.png

625332134c6f4d4600884b99daebf603.png625332134c6f4d4600884b99daebf603.png625332134c6f4d4600884b99daebf603.png

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.

Why Use DBFlow

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: No restrictions on inheritance of your table classes. They can be plain POJOs, no subclass required, but as a convenience we recommend using BaseModel. You can extend non-Model classes in different packages and use them as your DB tables. Also you can subclass other tables 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. SQLCipher, RXJava, and more!

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.

Changelog

Changes exist in the releases tab.

Usage Docs

For more detailed usage, check out it out here

Including in your project

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: 'kotlin-kapt' // required for kotlin.

def dbflow_version = "4.2.4"

// 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 {

// if Java use this. If using Kotlin do NOT use this.

annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${dbflow_version}"

// Use if Kotlin user.

kapt "com.github.Raizlabs.DBFlow:dbflow-processor:${dbflow_version}"

compile "com.github.Raizlabs.DBFlow:dbflow-core:${dbflow_version}"

compile "com.github.Raizlabs.DBFlow:dbflow:${dbflow_version}"

// sql-cipher database encryption (optional)

compile "com.github.Raizlabs.DBFlow:dbflow-sqlcipher:${dbflow_version}"

compile "net.zetetic:android-database-sqlcipher:${sqlcipher_version}@aar"

// kotlin extensions

compile "com.github.Raizlabs.DBFlow:dbflow-kotlinextensions:${dbflow_version}"

// RXJava 1 support

compile "com.github.Raizlabs.DBFlow:dbflow-rx:${dbflow_version}"

// RXJava 1 Kotlin Extensions Support

compile "com.github.Raizlabs.DBFlow:dbflow-rx-kotlinextensions:${dbflow_version}"

// RXJava 2 support

compile "com.github.Raizlabs.DBFlow:dbflow-rx2:${dbflow_version}"

// RXJava 2 Kotlin Extensions Support

compile "com.github.Raizlabs.DBFlow:dbflow-rx2-kotlinextensions:${dbflow_version}"

}

Pull Requests

I welcome and encourage all pull requests. Please read over these guidelines to ensure smooth PR attention:

Match coding style (braces, spacing, etc.) This is best achieved using Reformat Code shortcut, command+option+L on Mac and Ctrl+Alt+L on 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!

Maintained By

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值