agrosner/dbflow

A blazing fast, powerful, and very simple ORM android database library that writes database code for you.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 43 minutes ago
Added to GitGenius on September 14th, 2026
Created on September 17th, 2014
Open Issues & Pull Requests: 47 (+0)
GitHub issues: Enabled
Number of forks: 592
Total Stargazers: 4,848 (+0)
Total Subscribers: 164 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 0.0 hours
Mean response time: 37.8 days
90th percentile: 98.2 days
Tracked items: 6

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 5
New in 7 days: 1
Closed in 7 days: 0
Avg open age: 805 days
Stale 30+ days: 4
Stale 90+ days: 4

Recent activity

Opened in 7 days: 1
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

No label distribution available yet.

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

DBFlow is a Kotlin Multiplatform ORM library that generates database adapters and a typed query DSL from annotated table and database definitions.

The library addresses the problem of writing repetitive database boilerplate by using compile-time code generation. Developers annotate their table and database classes, and a compiler plugin generates type-safe adapters, column properties, and database helpers. The runtime provides a query DSL for constructing database operations, along with transaction support and Flow observers for reactive database access. Coroutines are built into the core runtime library rather than offered as a separate artifact.

DBFlow targets Android, JVM, iOS, and macOS through Kotlin Multiplatform. It suits projects that want to avoid manual database layer code and benefit from compile-time type safety. The library includes optional Android-specific modules for LiveData, Paging, and reactive streams integration, plus SQLCipher support for encrypted databases. Projects using version catalogs can set up the compiler plugin and generated-sources directory with minimal configuration, though the plugin currently requires a composite build until it reaches Maven Central.

The project maintains active documentation with a published GitBook guide and usage examples in the repository. The maintainer accepts contributions that match existing Kotlin style and remain scoped to specific issues, with pull requests directed to the master branch.