Low-level, safe, and fast NIF bindings to SQLite 3 for Elixir, powered by Rust and rusqlite. Bundled SQLite — no native install required.
For Ecto 3.x integration see the planned xqlite_ecto3 library (work in progress).
def deps do
[
{:xqlite, "~> 0.4.1"}
]
endPrecompiled NIF binaries ship for 8 targets (macOS, Linux, Windows, including ARM and RISC-V) — no Rust toolchain needed. To force source compilation:
XQLITE_BUILD=true mix deps.compile xqliteEach rusqlite::Connection is wrapped in Arc<Mutex<_>> via Rustler's ResourceArc. One Elixir process accesses a given connection at a time. Connection pooling belongs in higher layers (DBConnection / Ecto adapter).
SQLite is opened with SQLITE_OPEN_NO_MUTEX (rusqlite's default) — the Rust Mutex replaces SQLite's internal one, not the other way around.
Two modules: Xqlite for high-level helpers, XqliteNIF for direct NIF access. See hexdocs for full API reference.
Xqlite.stream/4— lazily fetch rows as string-keyed maps viaStream.resource/3; supports:type_extensionsoption for automatic encode/decodeXqlite.TypeExtension— behaviour for bidirectional Elixir↔SQLite type conversion. Built-in extensions:DateTime,NaiveDateTime,Date,Time(all ISO 8601)Xqlite.Result— query result struct implementingTable.Reader(works with Explorer, Kino, VegaLite)Xqlite.Pragma— typed PRAGMA schema withget/4andput/4, covering 60+ PRAGMAs with validation- Convenience helpers —
enable_foreign_key_enforcement/1,enable_strict_mode/1, etc.
- Connection:
open/1,open_in_memory/0,open_readonly/1,open_in_memory_readonly/0,open_temporary/0,close/1 - Queries:
query/3,query_cancellable/4— returns%{columns, rows, num_rows} - Execution:
execute/3,execute_cancellable/4— returns{:ok, affected_rows};execute_batch/2,execute_batch_cancellable/3 - Streaming:
stream_open/4,stream_get_columns/1,stream_fetch/2,stream_close/1 - Cancellation:
create_cancel_token/0,cancel_operation/1— per-operation, progress-handler-based, fine-grained - PRAGMAs:
get_pragma/2,set_pragma/3 - Transactions:
begin/2(:deferred/:immediate/:exclusive),commit/1,rollback/1,transaction_status/1,savepoint/2,release_savepoint/2,rollback_to_savepoint/2 - Row ID:
last_insert_rowid/1 - Schema:
schema_databases/1,schema_list_objects/2,schema_columns/2,schema_foreign_keys/2,schema_indexes/2,schema_index_columns/2,get_create_sql/2 - Log hook:
set_log_hook/1,remove_log_hook/0— global SQLite diagnostic log forwarded to a PID as{:xqlite_log, code, message} - Update hook:
set_update_hook/2,remove_update_hook/1— per-connection change notifications as{:xqlite_update, action, db_name, table, rowid} - Serialize:
serialize/1,serialize/2,deserialize/2,deserialize/4— atomic database snapshots to/from contiguous binary - Diagnostics:
compile_options/1,sqlite_version/0
Errors are structured tuples: {:error, {:constraint_violation, :constraint_foreign_key, msg}}, {:error, {:read_only_database, msg}}, etc. 30+ typed reason variants including all 13 SQLite constraint subtypes.
# Open and configure
{:ok, conn} = XqliteNIF.open("my_database.db")
:ok = Xqlite.enable_foreign_key_enforcement(conn)
# Query
{:ok, result} = XqliteNIF.query(conn, "SELECT id, name FROM users WHERE id = ?1", [1])
# => %{columns: ["id", "name"], rows: [[1, "Alice"]], num_rows: 1}
# Use with Table.Reader (Explorer, Kino, etc.)
result |> Xqlite.Result.from_map() |> Table.to_rows()
# => [%{"id" => 1, "name" => "Alice"}]
# Stream large result sets
Xqlite.stream(conn, "SELECT * FROM events") |> Enum.take(100)
# Transaction with immediate lock
:ok = XqliteNIF.begin(conn, :immediate)
{:ok, 1} = XqliteNIF.execute(conn, "UPDATE accounts SET balance = 0 WHERE id = 1", [])
:ok = XqliteNIF.commit(conn)
# Cancel a long-running query from another process
{:ok, token} = XqliteNIF.create_cancel_token()
task = Task.async(fn -> XqliteNIF.query_cancellable(conn, slow_sql, [], token) end)
:ok = XqliteNIF.cancel_operation(token)
{:error, :operation_cancelled} = Task.await(task)
# Read-only connection (writes fail with {:error, {:read_only_database, _}})
{:ok, ro_conn} = XqliteNIF.open_readonly("my_database.db")
# Receive SQLite diagnostic events (auto-index warnings, schema changes, etc.)
{:ok, :ok} = XqliteNIF.set_log_hook(self())
# => receive {:xqlite_log, 284, "automatic index on ..."}
# Receive per-connection change notifications
:ok = XqliteNIF.set_update_hook(conn, self())
{:ok, 1} = XqliteNIF.execute(conn, "INSERT INTO users (name) VALUES ('Bob')", [])
# => receive {:xqlite_update, :insert, "main", "users", 2}
# Type extensions: automatic DateTime/Date/Time encoding and decoding
alias Xqlite.TypeExtension
extensions = [TypeExtension.DateTime, TypeExtension.Date, TypeExtension.Time]
params = TypeExtension.encode_params([~U[2024-01-15 10:30:00Z], ~D[2024-06-15]], extensions)
{:ok, 1} = XqliteNIF.execute(conn, "INSERT INTO events (ts, day) VALUES (?1, ?2)", params)
# Stream with automatic type decoding
Xqlite.stream(conn, "SELECT ts, day FROM events", [],
type_extensions: [TypeExtension.DateTime, TypeExtension.Date])
|> Enum.to_list()
# => [%{"ts" => ~U[2024-01-15 10:30:00Z], "day" => ~D[2024-06-15]}]
# Serialize an in-memory database to a binary snapshot
{:ok, binary} = XqliteNIF.serialize(conn)
# Restore from a snapshot (e.g., transfer between connections, backups)
{:ok, conn2} = XqliteNIF.open_in_memory()
:ok = XqliteNIF.deserialize(conn2, binary)
# Read-only deserialization (writes will fail)
:ok = XqliteNIF.deserialize(conn2, "main", binary, true)last_insert_rowid/1does not work forWITHOUT ROWIDtables. UseINSERT ... RETURNING(SQLite >= 3.35.0).- Generated column
default_valueinschema_columns/2isnil. Useget_create_sql/2for the expression. - Invalid UTF-8 in TEXT columns — applying SQL text functions (
UPPER(),LOWER()) to non-UTF-8 data may crash the SQLite C library. - User-Defined Functions — not planned due to implementation complexity across NIF boundaries.
Planned for xqlite core (before Ecto adapter work):
- Extension loading (
enable_load_extension/2,load_extension/2) - Manual statement lifecycle (prepare/bind/step/reset/release)
- Online Backup API
- Session Extension
- Incremental Blob I/O
- SQLCipher support (optional)
- User-Defined Functions (lowest priority — extremely fiddly across NIF boundaries)
Then: xqlite_ecto3 — full Ecto 3.x adapter with DBConnection, migrations, type handling.
Contributions are welcome. Please open issues or submit pull requests.
MIT — see LICENSE.md.