A higher level SQLite database wrapper. This interface is implemented for other databases too.
Example:
import db_sqlite, math let theDb = open("mytest.db", nil, nil, nil) theDb.exec(sql"Drop table if exists myTestTbl") theDb.exec(sql("""create table myTestTbl ( Id INTEGER PRIMARY KEY, Name VARCHAR(50) NOT NULL, i INT(11), f DECIMAL(18,10))""")) theDb.exec(sql"BEGIN") for i in 1..1000: theDb.exec(sql"INSERT INTO myTestTbl (name,i,f) VALUES (?,?,?)", "Item#" & $i, i, sqrt(i.float)) theDb.exec(sql"COMMIT") for x in theDb.fastRows(sql"select * from myTestTbl"): echo x let id = theDb.tryInsertId(sql"INSERT INTO myTestTbl (name,i,f) VALUES (?,?,?)", "Item#1001", 1001, sqrt(1001.0)) echo "Inserted item: ", theDb.getValue(sql"SELECT name FROM myTestTbl WHERE id=?", id) theDb.close()
Types
DbConn = PSqlite3
- encapsulates a database connection Source
Row = seq[string]
- a row of a dataset. NULL database values will be transformed always to the empty string. Source
InstantRow = Pstmt
- a handle that can be used to get a row's column text on demand Source
EDb = object of IOError
- exception that is raised if a database error occurs Source
SqlQuery = distinct string
- an SQL query string Source
FDb = object of IOEffect
- effect that denotes a database operation Source
FReadDb = object of FDb
- effect that denotes a read operation Source
FWriteDb = object of FDb
- effect that denotes a write operation Source
Procs
proc sql(query: string): SqlQuery {.noSideEffect, inline, raises: [], tags: [].}
-
constructs a SqlQuery from the string query. This is supposed to be used as a raw-string-literal modifier: sql"update user set counter = counter + 1"
If assertions are turned off, it does nothing. If assertions are turned on, later versions will check the string for valid syntax.
Source proc dbError(msg: string) {.noreturn, raises: [EDb], tags: [].}
- raises an EDb exception with message msg. Source
proc tryExec(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): bool {. tags: [FReadDb, FWriteDb], raises: [].}
- tries to execute the query and returns true if successful, false otherwise. Source
proc exec(db: DbConn; query: SqlQuery; args: varargs[string, `$`]) {. tags: [FReadDb, FWriteDb], raises: [EDb].}
- executes the query and raises EDB if not successful. Source
proc `[]`(row: InstantRow; col: int32): string {.inline, raises: [], tags: [].}
- returns text for given column of the row Source
proc len(row: InstantRow): int32 {.inline, raises: [], tags: [].}
- returns number of columns in the row Source
proc getRow(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): Row {. tags: [FReadDb], raises: [EDb].}
- retrieves a single row. If the query doesn't return any rows, this proc will return a Row with empty strings for each column. Source
proc getAllRows(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): seq[Row] {. tags: [FReadDb], raises: [EDb].}
- executes the query and returns the whole result dataset. Source
proc getValue(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): string {. tags: [FReadDb], raises: [EDb].}
- executes the query and returns the first column of the first row of the result dataset. Returns "" if the dataset contains no rows or the database value is NULL. Source
proc tryInsertID(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): int64 {. tags: [FWriteDb], raises: [].}
- executes the query (typically "INSERT") and returns the generated ID for the row or -1 in case of an error. Source
proc insertID(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): int64 {. tags: [FWriteDb], raises: [EDb].}
- executes the query (typically "INSERT") and returns the generated ID for the row. For Postgre this adds RETURNING id to the query, so it only works if your primary key is named id. Source
proc execAffectedRows(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): int64 {. tags: [FReadDb, FWriteDb], raises: [EDb].}
- executes the query (typically "UPDATE") and returns the number of affected rows. Source
proc close(db: DbConn) {.tags: [FDb], raises: [EDb].}
- closes the database connection. Source
proc open(connection, user, password, database: string): DbConn {.tags: [FDb], raises: [EDb].}
- opens a database connection. Raises EDb if the connection could not be established. Only the connection parameter is used for sqlite. Source
proc setEncoding(connection: DbConn; encoding: string): bool {.tags: [FDb], raises: [EDb].}
-
sets the encoding of a database connection, returns true for success, false for failure.
Note that the encoding cannot be changed once it's been set. According to SQLite3 documentation, any attempt to change the encoding after the database is created will be silently ignored.
Source
Iterators
iterator fastRows(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): Row {. tags: [FReadDb], raises: [EDb].}
-
Executes the query and iterates over the result dataset.
This is very fast, but potentially dangerous. Use this iterator only if you require ALL the rows.
Breaking the fastRows() iterator during a loop will cause the next database query to raise an [EDb] exception unable to close due to ....
Source iterator instantRows(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): InstantRow {. tags: [FReadDb], raises: [EDb].}
- same as fastRows but returns a handle that can be used to get column text on demand using []. Returned handle is valid only within the interator body. Source
iterator rows(db: DbConn; query: SqlQuery; args: varargs[string, `$`]): Row {. tags: [FReadDb], raises: [EDb].}
- same as FastRows, but slower and safe. Source