SQLiteral
July 31, 2026 ยท View on GitHub
A high level SQLite API for Nim
Supports multi-threading, prepared statements, proper typing, zero-copy data paths, debugging, optimizing, backups, and more...
Example
import sqliteral
const Schema = "CREATE TABLE IF NOT EXISTS Example(string TEXT NOT NULL)"
type SqlStatements = enum
Upsert = """INSERT INTO Example(rowid, string) VALUES(1, ?)
ON CONFLICT(rowid) DO UPDATE SET string = ?"""
SelectAll = "SELECT string FROM Example"
var db: SQLiteral
proc operate(i: string) =
let view: DbValue = i.toDb(3, 7) # zero-copy view into string
db.transaction: db.exec(Upsert, view, view)
for row in db.rows(SelectAll): echo row.getCString(0)
db.openDatabase("example.db", Schema, exclusive = false)
var input = "012INPUT89"
operate(input)
db.close()
Documentation
http://olliNiinivaara.github.io/SQLiteral/
6.0.0 Release notes (2026-07-31)
Breaking changes
inreadonlymodeproperty andsetReadonlyproc are deprecated. Moreover,setReadonlydoes not execute any pragmas anymore, it only internally starts skipping all transactions.
Other
- new
setExclusivemodeproc for changing the database connection locking mode between NORMAL and EXCLUSIVE openDatabaseproc accepts a newexclusiveboolean parameter for setting database connection locking mode: true (default) = EXCLUSIVE, false = NORMAL- new
getInt32andgetTheInt32getters aboutproc accepts a newtologboolean parameter. if false (default), info is echoed to stdout. If true, info is sent to logger procedure.
5.0.1 Release notes (2025-02-13)
withRowtemplate fix by removing a superfluousdirtypragma
5.0.0 Release notes (2024-12-22)
- statements from more than one enum list can be used
- a statement is prepared automatically on first use
- all used statements are finalized automatically on close
- only the Nim default memory managers (ARC and ORC family) are supported
- errors that are not sqlite errors are logged with error code 10000
- failing to close raises an SQLError
- json_extract, json_patch, json_valid, and json_tree procs removed as too high level (esp. now that multiple statement lists are supported)