SQNice is a darn nice SQLite API for C .
It is based on sqlite3pp by Wongoo Lee, but has been extensively modified by me, Jens Alfke (@snej).
In the nearly 20(!) years I've been using SQLite, I've learned a number of good practices, and how to avoid pitfalls from suble misuse of its APIs.
With SQNice I've tried to take advantage of my learning and bake it into the library's API, to make those good practices automatic or at least easy. I've also tried to make it idiomatic C , and make simple things simple.
-
Building:
- Headers do not include
<sqlite3.h>
. This improves compile time, avoids creating a lot of macros and global-namespace symbols, and saves you from having to know or use the cryptic C API. - Headers are only ~1000 LOC; source code is ~1500 LOC.
- Includes CMake build file.
- Headers do not include
-
Idiomatic C :
-
Strongly typed: for example, errors are returned as
status
, an enum class, not genericint
s. -
Most strings are passed in as
string_view
so you don't have to callc_str()
on them. -
Makes use of RAII.
database
's destructor closes the database,transaction
's destructor rolls back the changes,query::iterator
's destructor clears the statement’s execution state. -
Uses C exceptions by default, but they can be turned off at the database or query level when necessary if you need to handle expected errors like constraint violations.
-
Manages nested transactions smoothly with RAII, including safely destructing a transaction object when an exception is thrown.
-
Standard C
iterator
for reading query rows. -
It's very simple to bind arguments to statement parameters, and to read column values. Parameters and rows look like arrays. Overloads and implicit conversions translate the data to/from your desired type. This is extensible, so you can make your custom C types easily bindable too. (It also avoids some subtle problems with
unsigned
types.) -
Includes idiomatic APIs for defining custom SQL functions, even aggregates. These use the same convenient binding API as queries.
-
It's very easy to run a query that returns a single value.
-
Thread-safe database-connection pool for safe concurrent access.
-
-
SQLite features:
-
Supports some cool but lesser-known features, like backups and blob streams.
-
Lets you set up best practices like WAL and incremental vacuuming with one [optional] setup call.
-
Super easy to reuse compiled statements (
sqlite3_stmt
), without running into problems with leftover bindings or forgetting to reset. -
Avoids subtle problems that can result from closing a database while statements are still busy. (At one point in the past my co-workers and I had to diagnose a very nasty database corruption bug stemming from this!)
-
Nested transactions (savepoints)
-
Easy access to getting and setting pragmas and limits.
-
Convenient API for incremental vacuuming, with an optional check for whether a minimum fraction of the file is free space.
-
Database encryption API supports both SQLCipher and the SQLite Encryption Extension, and adapts to their different behavior for setting passwords vs. raw keys.
-
A C 20 compiler is required. So far SQNice has been tested with Clang on macOS, GCC on Linux, and MSVC on Windows.
There is a CMake build script, so if your build system is CMake too, you can simply use an add_subdirectory
call to add sqnice.
Otherwise, just add the source files in src/
to your project, and add include/
to your header search path.
If your OS doesn't have SQLite installed, or you want to statically link it, there is a copy of the source code in vendor/sqlite
. It's the latest version as of this writing, 3.45.3, but of course you can download your own from sqlite.org.
There is also a copy of SQLCipher 4.6 in vendor/sqlcipher
; this is a modified version of SQLite 3.45.3 that supports encrypted databases. (sqnice also supports the official SQLite Encryption Extension, but since that's not open-source you'd need to purchase and download it yourself.)
If using CMake, set the option USE_LOCAL_SQLITE
to build sqnice with the included SQLite source code. Or set the option USE_LOCAL_SQLCIPHER
to build with the included SQLCipher. Otherwise it will link with whatever sqlite
header and library are available on your system (such as the built-in shared library on Apple platforms.)
For most purposes, you just need to #include "sqnice/sqnice.hh"
.
Everything is in the namespace sqnice
.
The main classes are:
database
— a database connection.pool
— a thread-safe pool of connections to a single database file.transaction
— a transaction or savepoint. Uses RAII to ensure the transaction aborts in case of exception or error.query
— a compiled SQLSELECT
statement. Rows are accessed with itsiterator
, which producesrow
s ofcolumn_value
s.command
— a compiled SQL statement other thanSELECT
; doesn’t return rows.
#include "sqnice/sqnice.hh"
#include <cstdio>
using namespace sqnice;
database db("", open_flags::memory);
db.setup(); // [1]
db.execute(R"""(
CREATE TABLE contacts (
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
phone TEXT NOT NULL,
age INTEGER,
UNIQUE(name, phone) ); )""");
{
transaction txn(db);
command ins = db.command("INSERT INTO contacts (name, phone, age) VALUES (?,?,?)");
ins.execute("Frank", "555-1212", 36); // [2]
ins.execute("Tanya", "555-1313", 50);
txn.commit(); // [3]
}
query min_age = db.query("SELECT id, name, age FROM contacts WHERE age >= ?1");
for (query::row row : min_age(40)) { // [4]
int64_t id = row[0]; // [5]
const char* name = row[1];
unsigned age = row[2];
std::printf("%2lld: '%s', age %u\n", id, name, age);
} // [6]
Notes:
- This is the “best practices setup” feature. Enables WAL, foreign key checks, extended error codes, etc. (If you don’t know what those are, don’t worry.) You’re welcome.
- This is one way to bind parameters: all at once like a function call. Or you could call
ins.bind(1, ...)
to bind individually, orins[1] = ...
. - A
transaction
must be explicitly committed, else it aborts when its scope exits. - Idiomatic C
for
loop using an iterator behind the scenes. And again, we use the functional style to bind parameters first. - Accessing column values by index. The actual type is
column_value
, which has implicit conversions so you can assign it to typical C types. - Behind the scenes, the
sqlite3_stmt
is automatically reset when the iterator exits scope.
SQNice defaults to throwing C exceptions on errors, but recognizes that sometimes you want to handle errors manually. So exceptions can be disabled on any instance by calling exceptions(false)
, causing its methods to return the error as a status
enum instead.
Objects created from a database
inherit the exceptions setting of the database instance, so turning off exceptions on the database
after you create it will pretty much turn them all off.
NOTE: Even if exceptions are turned off, SQNice will still throw exceptions for programmer errors like illegal arguments, arguments out of range, or calling an object that’s not in a valid state (like
execute()
on a closeddatabase
. These represent bugs in your code, not recoverable runtime errors.) SQNice does not build with exceptions disabled.
Constructors can’t return status codes, of course, so any constructor that can fail will always throw an exception on failure. But you can avoid this by using default constructors instead, then calling a regular method to initialize the object. For example, you can instantiate a database
without parameters, call exceptions(false)
, then call open()
to open a database and get a status code back.
Similarly, destructors can’t return status, but nor should they throw exceptions. So for example database
's destructor closes the database if it’s open, but will ignore any errors. If you want to make sure to detect any errors, you can call close()
first.
The simplest way to execute a SQL command is with db.execute("...")
. It just takes a SQL string. You can have multiple commands separated by semicolons. This is great for simple things like creating tables or indexes.
The command
class is more sophisticated. It’s better for INSERT
, UPDATE
, DELETE
statements. Usually you create one of these by calling db.command("...")
. The database keeps a cache of compiled commands, so if you pass the same SQL string again you’ll get a command
instance that was already compiled, which is faster.
command
supports bindable parameters (?
, ?1
, :name
, $name
) in the statement. When the object is created the parameter values are all reset to NULL
, so before executing the statement you should bind values to these. There are three ways to do this:
cmd.bind(1, "foo")
orcmd.bind(":name", "foo")
cmd[1] = "foo"
orcmd[":name"] = "foo"
cmd("foo", 12, 3.14159)
… this binds all parameters at once, starting at 1.
After calling execute()
to run the command, you can call its last_insert_rowid()
method to get the row ID from an INSERT
, or changes()
to find how many rows were changed.
query
is for SELECT
statements. Usually you create one by calling db.query("...")
. It has bindable parameters like command
, but you run it by creating an iterator
and stepping through the result row(s). You can do this with begin()
and end()
or with a for(:)
loop. The iterator produces row
objects, which act like indexable arrays of column
s, which can be assigned to your own variables or passed to functions.
Note: The SQLite API requires that you know when to clear a statement’s bindings or reset its execution state. SQNice takes care of this for you: when the database vends you a
command
orquery
object, the cached statement’s bindings have been cleared.command
's andquery
's destructors reset their execution state, as does a queryiterator
's destructor.
Binding parameters or getting column values means converting between C types and the SQLite types INTEGER
, FLOAT
, TEXT
, BLOB
and NULL
. SQLite can implicitly convert to/from these C types:
- All integer types up to 64-bit, including unsigned ones.
bool
float
anddouble
const char*
,std::string_view
,std::string
- Blobs can be accessed as
const void*
,std::span<std::byte>
, or the structsqnice::blob
which is simply a pointer and a size. nullptr_t
, i.e. a literalnullptr
, representsNULL
.
When binding text and blob parameters you can tell SQLite whether to copy the value. Copying is slower but safer; if you don’t copy the value, the command
or query
keeps a pointer to it, and it’s your responsibility to make sure that pointer remains valid until the parameter is re-bound or you destruct the command
or query
object. In sqnice
you disable copying by wrapping the parameter value with uncopied(...)
, for example q[1] = uncopied(myLongString)
.
Copying is also relevant when getting column values back from SQLite. If you assign a column
to a string_view
, for example, the string_view
points to memory owned by the query and will only remain valid until the iterator is advanced or destructed. If that doesn’t work for you, assign it to a string
instead.
You can write conversion functions to work with your own data types, too; details TBD, but look at the types bindable
and column_helper
in query.hh
for clues.
Transactions are important not just for their ACID properties, but for performance. If you don’t use a transaction, SQLite implicitly wraps one around every statement it runs, which means each statement incurs the significant overhead of committing changes. If you have multiple statements to run at once, it’s highly recommended to group them in a transaction.
The transaction
class represents a transaction. The constructor begins the transaction, and the destructor makes sure to abort it if you didn’t already explicitly commit or abort. That means you can return
or break
out of a block containing a transaction
, or even throw an exception, and everything is cleaned up for you. But you do have to remember to call txn.commit()
at the end, before it exits scope.
(There is an auto-commit mode for transactions, where it calls commit
for you in the destructor as long as no exception was thrown. It’s discouraged because a commit might fail, but C destructors shouldn’t throw exceptions.)
Transactions nest: it’s fine to start a transaction when one is already active. If you roll back the inner transaction, only the changes made since it was begin are removed.
There’s a lower-level transaction API:
db.beginTransaction()
anddb.endTransaction()
. These put the burden on you to balance each begin with an end.
IMPORTANT: You MUST NOT access a
database
, nor any objects created from it such ascommand
,query
, etc., simultaneously from multiple threads.
The easiest thread-safety solution is to use SQNice's thread-safe pool
class, which manages a set of open database
instances on the same file. When a thread wants to use a database, it "borrows" one from the pool, then returns it when it's done.
The pool provides up to four read-only database
s (it's configurable) and a single writeable one. Only one writeable one is necessary because SQLite only supports a single simultaneous writer.
If that doesn't meet your needs, other ways to achieve thread-safety are:
- Open a single
database
, associate your ownmutex
with it, and make sure each thread locks the mutex while accessing thedatabase
or while using anycommand
orquery
ortransaction
objects. - Open one
database
on each thread (on the same file), and make sure each thread uses only its database and derived objects. A thread-local variable can be useful for this.