bsql
Compile-time safe SQL for Rust. PostgreSQL and SQLite.
Why bsql
- If it compiles, the SQL is correct -- every query is validated against your real database during
cargo build. Table names, column names, types, nullability -- all checked before your code can run. - Always checked -- there is no unchecked SQL function. In sqlx, one missing
!(query()vsquery!()) silently skips compile-time validation. In bsql, there is only one function, and it always checks. You cannot accidentally write unchecked SQL because the unchecked version does not exist. - Pure SQL -- write real SQL. CTEs, JOINs, window functions, subqueries. No DSL, no method chains, no
.filter().select().join()(hi, diesel). If PostgreSQL or SQLite supports it, bsql validates it. - Faster than C -- 1.0–2.5x faster than raw C (libpq, sqlite3) on every benchmark. Not synthetic tuning — the same code paths run in benchmarks and in your production app. See benchmarks.
- Minimal footprint -- 1.7 MB peak memory (RSS) — 3.8–10x less than C (libpq), sqlx, diesel, and Go. See memory benchmarks.
- PostgreSQL and SQLite -- same
query!macro, same compile-time safety, both databases. SQLite is not a second-class citizen.
let id = 42i32;
// This query is validated at compile time against your real database.
// If the `users` table doesn't exist, or `login` isn't a column,
// or `id` isn't an i32 -- this won't compile.
let users = query!.fetch.await?;
let user = &users;
// user.id: i32, user.login: String, user.active: bool
// Types are inferred from the database schema. Nullable columns become Option<T>.
Performance & Memory
You need to see this 🫢 — bsql vs C vs Go vs diesel vs sqlx, PostgreSQL and SQLite, full methodology and how to reproduce.
Quick Start
Cargo.toml:
[]
= { = "0.18", = ["time", "uuid"] }
Set the database URL (used by query! at compile time):
src/main.rs:
use Pool;
async
Cargo.toml:
[]
= { = "0.18", = ["sqlite"] }
Set the database URL (used by query! at compile time):
If you commit the .bsql/ cache directory to your repo, teammates and CI can compile without a live database -- the cache contains the schema snapshot.
src/main.rs:
use SqlitePool;
async
URL formats: sqlite:./relative/path, sqlite:///absolute/path, sqlite::memory:
See examples/ for more complete, runnable programs.
Safety
- PostgreSQL driver:
#![forbid(unsafe_code)]-- zero unsafe - SQLite driver: unsafe confined to FFI boundary calls (
ffi.rs) -- every other file is safe Rust - 5 of 6 crates enforce
#![forbid(unsafe_code)]at compile time - 1,600+ tests (unit, integration, and compile-fail)
SQLite is a C library, not a network protocol. Talking to it means calling C functions from Rust, which requires unsafe at the FFI boundary. This is the same constraint every Rust SQLite library faces (including rusqlite, diesel, and sqlx).
In bsql, all unsafe code is confined to one file: crates/bsql-driver-sqlite/src/ffi.rs. Every other module in the SQLite driver is safe Rust. The PostgreSQL driver has zero unsafe -- it speaks the PostgreSQL wire protocol in pure Rust.
When a pure-Rust SQLite engine like Limbo reaches production readiness, this FFI layer can be replaced entirely.
Compile-Time Checks
| Your mistake | What happens |
|---|---|
| Table name typo | table "tcikets" not found -- did you mean "tickets"? |
| Column doesn't exist | column "naem" not found in table "users" |
| Wrong parameter type | expected i32, found &str for column "users.id" |
| Nullable column | Automatically becomes Option<T> -- you cannot forget to handle NULL |
UPDATE without WHERE |
Compile error -- flags accidental full-table updates |
DELETE without WHERE |
Compile error -- same protection |
| SQL syntax error | PostgreSQL's own parser error message, at compile time |
| Typo in any identifier | Levenshtein-based "did you mean?" suggestions |
Features
Out of the box, bsql works with basic types: integers, floats, booleans, strings, byte arrays. Enable features for specialized types:
= { = "0.18", = ["time", "uuid", "decimal"] }
| Feature | PostgreSQL types | Rust types |
|---|---|---|
time |
TIMESTAMPTZ, TIMESTAMP, DATE, TIME | time::OffsetDateTime, Date, Time |
chrono |
Same (alternative to time) |
chrono::DateTime<Utc>, NaiveDateTime |
uuid |
UUID | uuid::Uuid |
decimal |
NUMERIC, DECIMAL | rust_decimal::Decimal |
If your query touches a column that needs a feature you haven't enabled, you get a compile error naming the exact feature to add.
Optional clauses expand to every combination at compile time. Each combination is validated against the database.
let tickets = query!.fetch.await?;
No string concatenation. No runtime SQL assembly. 2 optional clauses = 4 variants, all validated at compile time.
| Method | Returns | Use |
|---|---|---|
.fetch(&pool).await |
Vec<Row> |
SELECT queries |
.run(&pool).await |
u64 |
INSERT, UPDATE, DELETE |
.defer(&tx).await |
() |
Buffer in transaction |
Power users: fetch_one, fetch_optional, fetch_stream, for_each also available.
let tx = pool.begin.await?;
// .defer() buffers writes -- nothing hits the network yet
query!
.defer.await?;
query!
.defer.await?;
// commit() flushes all deferred operations in a single pipeline, then commits
tx.commit.await?;
Savepoints are also supported: tx.savepoint("sp1"), tx.rollback_to("sp1").
If the transaction is dropped without calling commit(), it automatically rolls back.
let mut stream = query!.fetch_stream.await?;
while stream.advance?
True PostgreSQL-level streaming. Rows are fetched in batches and yielded one at a time. Memory usage stays constant regardless of result set size.
let mut listener = connect?;
listener.listen?;
loop
Real-time notifications for cache invalidation, job queues, live updates.
= { = "0.18", = ["explain"] }
Runs EXPLAIN on every query during compilation and embeds the plan as a doc comment. Hover over any query result type in your IDE to see the query plan. Development-only -- disable in CI and release builds.
Type-safe mapping between Rust enums and PostgreSQL enum types.
let tickets = query!.fetch.await?;
Each sort variant's SQL is validated at compile time. The enum is exhaustive -- no default case, no fallback.
bsql automatically configures SQLite for optimal performance:
- WAL mode -- concurrent readers, non-blocking reads
- 256 MB mmap -- memory-mapped I/O for fast reads
- 64 MB cache -- large page cache
- STRICT tables -- recommended for type safety
busy_timeout = 0-- fail-fast, no silent waiting- Foreign keys ON -- enforced by default
The pool uses a single writer + N reader connections (default 4) behind Mutex, fully synchronous.
- Not an ORM. You write SQL, not method chains.
- Not a query builder. No
.filter(),.select(),.join(). - Not database-agnostic. PostgreSQL and SQLite only. No MySQL, no MSSQL.
- Not a migration tool. Use dbmate, sqitch, refinery, or whatever you prefer.
About
Built with Claude Code. Seventeen design principles written before the first line of code. Specifications first, then implementation, then multiple rounds of architectural audit. 1,600+ tests proving not just that the code works, but that broken code is rejected.
Don't follow the author's name. Don't assume a library that's been around for 2 years is 12 times better than one that's been around for 2 months. Run the benchmarks yourself, read the tests, check the code.
License
MIT OR Apache-2.0