1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662 ## .. include:: ./tiny_sqlite/private/documentation.rst
import std / [options, typetraits, sequtils]
from tiny_sqlite / sqlite_wrapper as sqlite import nil
import tiny_sqlite / private / stmtcache
when not declared(tupleLen):
import macros
macro tupleLen(typ: typedesc[tuple]): int =
let impl = getType(typ)
result = newIntlitNode(impl[1].len - 1)
export options.get, options.isSome, options.isNone
type
DbConnImpl = ref object
handle: sqlite.Sqlite3 ## The underlying SQLite3 handle
cache: StmtCache
DbConn* = distinct DbConnImpl ## Encapsulates a database connection.
SqlStatementImpl = ref object
handle: sqlite.Stmt
db: DbConn
SqlStatement* = distinct SqlStatementImpl ## A prepared SQL statement.
DbMode* = enum
dbRead,
dbReadWrite
SqliteError* = object of CatchableError ## \
## Raised when whenever a database related error occurs.
## Errors are typically a result of API misuse,
## e.g trying to close an already closed database connection.
DbValueKind* = enum ## \
## Enum of all possible value types in a SQLite database.
sqliteNull,
sqliteInteger,
sqliteReal,
sqliteText,
sqliteBlob
DbValue* = object ## \
## Can represent any value in a SQLite database.
case kind*: DbValueKind
of sqliteInteger:
intVal*: int64
of sqliteReal:
floatVal*: float64
of sqliteText:
strVal*: string
of sqliteBlob:
blobVal*: seq[byte]
of sqliteNull:
discard
Rc = cint
ResultRow* = object
values: seq[DbValue]
columns: seq[string]
const SqliteRcOk = [ sqlite.SQLITE_OK, sqlite.SQLITE_DONE, sqlite.SQLITE_ROW ]
# Forward declarations
proc isInTransaction*(db: DbConn): bool {.noSideEffect.}
proc isOpen*(db: DbConn): bool {.noSideEffect, inline.}
template handle(db: DbConn): sqlite.Sqlite3 = DbConnImpl(db).handle
template handle(statement: SqlStatement): sqlite.Stmt = SqlStatementImpl(statement).handle
template db(statement: SqlStatement): DbConn = SqlStatementImpl(statement).db
template cache(db: DbConn): StmtCache = DbConnImpl(db).cache
template hasCache(db: DbConn): bool = db.cache.capacity > 0
template assertCanUseDb(db: DbConn) =
doAssert (not DbConnImpl(db).isNil) and (not db.handle.isNil), "Database is closed"
template assertCanUseStatement(statement: SqlStatement, busyOk: static[bool] = false) =
doAssert (not SqlStatementImpl(statement).isNil) and (not statement.handle.isNil),
"Statement cannot be used because it has already been finalized."
doAssert not statement.db.handle.isNil,
"Statement cannot be used because the database connection has been closed"
when not busyOk:
doAssert not sqlite.stmt_busy(statement.handle),
"Statement cannot be used while inside the 'all' iterator"
proc newSqliteError(db: DbConn): ref SqliteError =
## Raises a SqliteError exception.
(ref SqliteError)(msg: "sqlite error: " & $sqlite.errmsg(db.handle))
proc newSqliteError(msg: string): ref SqliteError =
## Raises a SqliteError exception.
(ref SqliteError)(msg: msg)
template checkRc(db: DbConn, rc: Rc) =
if rc notin SqliteRcOk:
raise newSqliteError(db)
proc skipLeadingWhiteSpaceAndComments(sql: var cstring) =
let original = sql
template `&+`(s: cstring, offset: int): cstring =
cast[cstring](cast[ByteAddress](sql) + offset)
while true:
case sql[0]
of {' ', '\t', '\v', '\r', '\l', '\f'}:
sql = sql &+ 1
of '-':
if sql[1] == '-':
sql = sql &+ 2
while sql[0] != '\n':
sql = sql &+ 1
if sql[0] == '\0':
return
sql = sql &+ 1
else:
return;
of '/':
if sql[1] == '*':
sql = sql &+ 2
while sql[0] != '*' or sql[1] != '/':
sql = sql &+ 1
if sql[0] == '\0':
sql = original
return
sql = sql &+ 2
else:
return;
else:
return
#
# DbValue
#
proc toDbValue*[T: Ordinal](val: T): DbValue =
## Convert an ordinal value to a Dbvalue.
DbValue(kind: sqliteInteger, intVal: val.int64)
proc toDbValue*[T: SomeFloat](val: T): DbValue =
## Convert a float to a DbValue.
DbValue(kind: sqliteReal, floatVal: val)
proc toDbValue*[T: string](val: T): DbValue =
## Convert a string to a DbValue.
DbValue(kind: sqliteText, strVal: val)
proc toDbValue*[T: seq[byte]](val: T): DbValue =
## Convert a sequence of bytes to a DbValue.
DbValue(kind: sqliteBlob, blobVal: val)
proc toDbValue*[T: Option](val: T): DbValue =
## Convert an optional value to a DbValue.
if val.isNone:
DbValue(kind: sqliteNull)
else:
toDbValue(val.get)
proc toDbValue*[T: type(nil)](val: T): DbValue =
## Convert a nil literal to a DbValue.
DbValue(kind: sqliteNull)
proc toDbValues*(values: varargs[DbValue, toDbValue]): seq[DbValue] =
## Convert several values to a sequence of DbValue's.
runnableExamples:
doAssert toDbValues("string", 23) == @[toDbValue("string"), toDbValue(23)]
@values
proc fromDbValue*(value: DbValue, T: typedesc[Ordinal]): T =
# Convert a DbValue to an ordinal.
value.intval.T
proc fromDbValue*(value: DbValue, T: typedesc[SomeFloat]): float64 =
## Convert a DbValue to a float.
value.floatVal
proc fromDbValue*(value: DbValue, T: typedesc[string]): string =
## Convert a DbValue to a string.
value.strVal
proc fromDbValue*(value: DbValue, T: typedesc[seq[byte]]): seq[byte] =
## Convert a DbValue to a sequence of bytes.
value.blobVal
proc fromDbValue*[T](value: DbValue, _: typedesc[Option[T]]): Option[T] =
## Convert a DbValue to an optional value.
if value.kind == sqliteNull:
none(T)
else:
some(value.fromDbValue(T))
proc fromDbValue*(value: DbValue, T: typedesc[DbValue]): T =
## Special overload that simply return `value`.
## The purpose of this overload is to do partial unpacking.
## For example, if the type of one column in a result row is unknown,
## the DbValue type can be kept just for that column.
##
## .. code-block:: nim
##
## for row in db.iterate("SELECT name, extra FROM Person"):
## # Type of 'extra' is unknown, so we don't unpack it.
## # The 'extra' variable will be of type 'DbValue'
## let (name, extra) = row.unpack((string, DbValue))
value
proc `$`*(dbVal: DbValue): string =
result.add "DbValue["
case dbVal.kind
of sqliteInteger: result.add $dbVal.intVal
of sqliteReal: result.add $dbVal.floatVal
of sqliteText: result.addQuoted dbVal.strVal
of sqliteBlob: result.add "<blob>"
of sqliteNull: result.add "nil"
result.add "]"
proc `==`*(a, b: DbValue): bool =
## Returns true if `a` and `b` represents the same value.
if a.kind != b.kind:
false
else:
case a.kind
of sqliteInteger: a.intVal == b.intVal
of sqliteReal: a.floatVal == b.floatVal
of sqliteText: a.strVal == b.strVal
of sqliteBlob: a.blobVal == b.blobVal
of sqliteNull: true
#
# PStmt
#
proc bindParams(db: DbConn, stmtHandle: sqlite.Stmt, params: varargs[DbValue]): Rc =
result = sqlite.SQLITE_OK
let expectedParamsLen = sqlite.bind_parameter_count(stmtHandle)
if expectedParamsLen != params.len:
raise newSqliteError("SQL statement contains " & $expectedParamsLen &
" parameters but only " & $params.len & " was provided.")
var idx = 1'i32
for value in params:
let rc =
case value.kind
of sqliteNull:
sqlite.bind_null(stmtHandle, idx)
of sqliteInteger:
sqlite.bind_int64(stmtHandle, idx, value.intval)
of sqliteReal:
sqlite.bind_double(stmtHandle, idx, value.floatVal)
of sqliteText:
sqlite.bind_text(stmtHandle, idx, value.strVal.cstring, value.strVal.len.int32, sqlite.SQLITE_TRANSIENT)
of sqliteBlob:
sqlite.bind_blob(stmtHandle, idx.int32, cast[string](value.blobVal).cstring,
value.blobVal.len.int32, sqlite.SQLITE_TRANSIENT)
if rc notin SqliteRcOk:
return rc
idx.inc
proc prepareSql(db: DbConn, sql: string): sqlite.Stmt =
var tail: cstring
let rc = sqlite.prepare_v2(db.handle, sql.cstring, sql.len.cint + 1, result, tail)
db.checkRc(rc)
tail.skipLeadingWhiteSpaceAndComments()
assert tail.len == 0,
"Only single SQL statement is allowed in this context. " &
"To execute several SQL statements, use 'execScript'"
proc prepareSql(db: DbConn, sql: string, params: seq[DbValue]): sqlite.Stmt
{.raises: [SqliteError].} =
if db.hasCache:
result = db.cache.getOrDefault(sql)
if result.isNil:
result = prepareSql(db, sql)
db.cache[sql] = result
else:
result = prepareSql(db, sql)
let rc = db.bindParams(result, params)
db.checkRc(rc)
proc readColumn(stmtHandle: sqlite.Stmt, col: int32): DbValue =
let columnType = sqlite.column_type(stmtHandle, col)
case columnType
of sqlite.SQLITE_INTEGER:
result = toDbValue(sqlite.column_int64(stmtHandle, col))
of sqlite.SQLITE_FLOAT:
result = toDbValue(sqlite.column_double(stmtHandle, col))
of sqlite.SQLITE_TEXT:
result = toDbValue($sqlite.column_text(stmtHandle, col))
of sqlite.SQLITE_BLOB:
let blob = sqlite.column_blob(stmtHandle, col)
let bytes = sqlite.column_bytes(stmtHandle, col)
var s = newSeq[byte](bytes)
if bytes != 0:
copyMem(addr(s[0]), blob, bytes)
result = toDbValue(s)
of sqlite.SQLITE_NULL:
result = toDbValue(nil)
else:
raiseAssert "Unexpected column type: " & $columnType
iterator iterate(db: DbConn, stmtOrHandle: sqlite.Stmt | SqlStatement, params: varargs[DbValue],
errorRc: var int32): ResultRow =
let stmtHandle = when stmtOrHandle is sqlite.Stmt: stmtOrHandle else: stmtOrHandle.handle
errorRc = db.bindParams(stmtHandle, params)
if errorRc in SqliteRcOk:
var rowLen = sqlite.column_count(stmtHandle)
var columns = newSeq[string](rowLen)
for idx in 0 ..< rowLen:
columns[idx] = $sqlite.column_name(stmtHandle, idx)
while true:
var row = ResultRow(values: newSeq[DbValue](rowLen), columns: columns)
when stmtOrHandle is sqlite.Stmt:
assertCanUseDb db
else:
assertCanUseStatement stmtOrHandle, busyOk = true
let rc = sqlite.step(stmtHandle)
if rc == sqlite.SQLITE_ROW:
for idx in 0 ..< rowLen:
row.values[idx] = readColumn(stmtHandle, idx)
yield row
elif rc == sqlite.SQLITE_DONE:
break
else:
errorRc = rc
break
#
# DbConn
#
proc exec*(db: DbConn, sql: string, params: varargs[DbValue, toDbValue]) =
## Executes ``sql``, which must be a single SQL statement.
runnableExamples:
let db = openDatabase(":memory:")
db.exec("CREATE TABLE Person(name, age)")
db.exec("INSERT INTO Person(name, age) VALUES(?, ?)",
"John Doe", 23)
assertCanUseDb db
let stmtHandle = db.prepareSql(sql, @params)
let rc = sqlite.step(stmtHandle)
if db.hasCache:
discard sqlite.reset(stmtHandle)
else:
discard sqlite.finalize(stmtHandle)
db.checkRc(rc)
template transaction*(db: DbConn, body: untyped) =
## Starts a transaction and runs `body` within it. At the end the transaction is commited.
## If an error is raised by `body` the transaction is rolled back. Nesting transactions is a no-op.
if db.isInTransaction:
body
else:
db.exec("BEGIN")
var ok = true
try:
try:
body
except Exception:
ok = false
db.exec("ROLLBACK")
raise
finally:
if ok:
db.exec("COMMIT")
proc execMany*(db: DbConn, sql: string, params: seq[seq[DbValue]]) =
## Executes ``sql``, which must be a single SQL statement, repeatedly using each element of
## ``params`` as parameters. The statements are executed inside a transaction.
assertCanUseDb db
db.transaction:
for p in params:
db.exec(sql, p)
proc execScript*(db: DbConn, sql: string) =
## Executes ``sql``, which can consist of multiple SQL statements.
## The statements are executed inside a transaction.
assertCanUseDb db
db.transaction:
var remaining = sql.cstring
while remaining.len > 0:
var tail: cstring
var stmtHandle: sqlite.Stmt
var rc = sqlite.prepare_v2(db.handle, remaining, -1, stmtHandle, tail)
db.checkRc(rc)
rc = sqlite.step(stmtHandle)
discard sqlite.finalize(stmtHandle)
db.checkRc(rc)
remaining = tail
remaining.skipLeadingWhiteSpaceAndComments()
iterator iterate*(db: DbConn, sql: string,
params: varargs[DbValue, toDbValue]): ResultRow =
## Executes ``sql``, which must be a single SQL statement, and yields each result row one by one.
assertCanUseDb db
let stmtHandle = db.prepareSql(sql, @params)
var errorRc: int32
try:
for row in db.iterate(stmtHandle, params, errorRc):
yield row
finally:
# The database might have been closed while iterating, in which
# case we don't need to clean up the statement.
if not db.handle.isNil:
if db.hasCache:
discard sqlite.reset(stmtHandle)
else:
discard sqlite.finalize(stmtHandle)
db.checkRc(errorRc)
proc all*(db: DbConn, sql: string,
params: varargs[DbValue, toDbValue]): seq[ResultRow] =
## Executes ``sql``, which must be a single SQL statement, and returns all result rows.
for row in db.iterate(sql, params):
result.add row
proc one*(db: DbConn, sql: string,
params: varargs[DbValue, toDbValue]): Option[ResultRow] =
## Executes `sql`, which must be a single SQL statement, and returns the first result row.
## Returns `none(seq[DbValue])` if the result was empty.
for row in db.iterate(sql, params):
return some(row)
proc value*(db: DbConn, sql: string,
params: varargs[DbValue, toDbValue]): Option[DbValue] =
## Executes `sql`, which must be a single SQL statement, and returns the first column of the first result row.
## Returns `none(DbValue)` if the result was empty.
for row in db.iterate(sql, params):
return some(row.values[0])
proc close*(db: DbConn) =
## Closes the database connection. This should be called once the connection will no longer be used
## to avoid leaking memory. Closing an already closed database is a harmless no-op.
if not db.isOpen:
return
var stmtHandle = sqlite.next_stmt(db.handle, nil)
while not stmtHandle.isNil:
discard sqlite.finalize(stmtHandle)
stmtHandle = sqlite.next_stmt(db.handle, nil)
db.cache.clear()
let rc = sqlite.close(db.handle)
db.checkRc(rc)
DbConnImpl(db).handle = nil
proc lastInsertRowId*(db: DbConn): int64 =
## Get the row id of the last inserted row.
## For tables with an integer primary key,
## the row id will be the primary key.
##
## For more information, refer to the SQLite documentation
## (https://www.sqlite.org/c3ref/last_insert_rowid.html).
assertCanUseDb db
sqlite.last_insert_rowid(db.handle)
proc changes*(db: DbConn): int32 =
## Get the number of changes triggered by the most recent INSERT, UPDATE or
## DELETE statement.
##
## For more information, refer to the SQLite documentation
## (https://www.sqlite.org/c3ref/changes.html).
assertCanUseDb db
sqlite.changes(db.handle)
proc isReadonly*(db: DbConn): bool =
## Returns true if ``db`` is in readonly mode.
runnableExamples:
let db = openDatabase(":memory:")
doAssert not db.isReadonly
let db2 = openDatabase(":memory:", dbRead)
doAssert db2.isReadonly
assertCanUseDb db
sqlite.db_readonly(db.handle, "main") == 1
proc isOpen*(db: DbConn): bool {.inline.} =
## Returns true if `db` has been opened and not yet closed.
runnableExamples:
var db: DbConn
doAssert not db.isOpen
db = openDatabase(":memory:")
doAssert db.isOpen
db.close()
doAssert not db.isOpen
(not DbConnImpl(db).isNil) and (not db.handle.isNil)
proc isInTransaction*(db: DbConn): bool =
## Returns true if a transaction is currently active.
runnableExamples:
let db = openDatabase(":memory:")
doAssert not db.isInTransaction
db.transaction:
doAssert db.isInTransaction
assertCanUseDb db
sqlite.get_autocommit(db.handle) == 0
proc unsafeHandle*(db: DbConn): sqlite.Sqlite3 {.inline.} =
## Returns the raw SQLite3 handle. This can be used to interact directly with the SQLite C API
## with the `tiny_sqlite/sqlite_wrapper` module. Note that the handle should not be used after `db.close` has
## been called as doing so would break memory safety.
assert not DbConnImpl(db).handle.isNil, "Database is closed"
DbConnImpl(db).handle
#
# SqlStatement
#
proc stmt*(db: DbConn, sql: string): SqlStatement =
## Constructs a prepared statement from `sql`.
assertCanUseDb db
let handle = prepareSql(db, sql)
SqlStatementImpl(handle: handle, db: db).SqlStatement
proc exec*(statement: SqlStatement, params: varargs[DbValue, toDbValue]) =
## Executes `statement` with `params` as parameters.
assertCanUseStatement statement
var rc = statement.db.bindParams(statement.handle, params)
if rc notin SqliteRcOk:
discard sqlite.reset(statement.handle)
statement.db.checkRc(rc)
else:
rc = sqlite.step(statement.handle)
discard sqlite.reset(statement.handle)
statement.db.checkRc(rc)
proc execMany*(statement: SqlStatement, params: seq[seq[DbValue]]) =
## Executes ``statement`` repeatedly using each element of ``params`` as parameters.
## The statements are executed inside a transaction.
assertCanUseStatement statement
statement.db.transaction:
for p in params:
statement.exec(p)
iterator iterate*(statement: SqlStatement, params: varargs[DbValue, toDbValue]): ResultRow =
## Executes ``statement`` and yields each result row one by one.
assertCanUseStatement statement
var errorRc: int32
try:
for row in statement.db.iterate(statement, params, errorRc):
yield row
finally:
# The database might have been closed while iterating, in which
# case we don't need to clean up the statement.
if not statement.db.handle.isNil:
discard sqlite.reset(statement.handle)
statement.db.checkRc errorRc
proc all*(statement: SqlStatement, params: varargs[DbValue, toDbValue]): seq[ResultRow] =
## Executes ``statement`` and returns all result rows.
assertCanUseStatement statement
for row in statement.iterate(params):
result.add row
proc one*(statement: SqlStatement,
params: varargs[DbValue, toDbValue]): Option[ResultRow] =
## Executes `statement` and returns the first row found.
## Returns `none(seq[DbValue])` if no result was found.
assertCanUseStatement statement
for row in statement.iterate(params):
return some(row)
proc value*(statement: SqlStatement,
params: varargs[DbValue, toDbValue]): Option[DbValue] =
## Executes `statement` and returns the first column of the first row found.
## Returns `none(DbValue)` if no result was found.
assertCanUseStatement statement
for row in statement.iterate(params):
return some(row.values[0])
proc finalize*(statement: SqlStatement): void =
## Finalize the statement. This needs to be called once the statement is no longer used to
## prevent memory leaks. Finalizing an already finalized statement is a harmless no-op.
if SqlStatementImpl(statement).isNil:
return
discard sqlite.finalize(statement.handle)
SqlStatementImpl(statement).handle = nil
proc isAlive*(statement: SqlStatement): bool =
## Returns true if ``statement`` has been initialized and not yet finalized.
(not SqlStatementImpl(statement).isNil) and (not statement.handle.isNil) and
(not statement.db.handle.isNil)
proc openDatabase*(path: string, mode = dbReadWrite, cacheSize: Natural = 100): DbConn =
## Open a new database connection to a database file. To create an
## in-memory database the special path `":memory:"` can be used.
## If the database doesn't already exist and ``mode`` is ``dbReadWrite``,
## the database will be created. If the database doesn't exist and ``mode``
## is ``dbRead``, a ``SqliteError`` exception will be raised.
##
## NOTE: To avoid memory leaks, ``db.close`` must be called when the
## database connection is no longer needed.
runnableExamples:
let memDb = openDatabase(":memory:")
var handle: sqlite.Sqlite3
let db = new DbConnImpl
db.handle = handle
if cacheSize > 0:
db.cache = initStmtCache(cacheSize)
result = DbConn(db)
case mode
of dbReadWrite:
let rc = sqlite.open(path, db.handle)
result.checkRc(rc)
of dbRead:
let rc = sqlite.open_v2(path, db.handle, sqlite.SQLITE_OPEN_READONLY, nil)
result.checkRc(rc)
#
# ResultRow
#
proc `[]`*(row: ResultRow, idx: Natural): DbValue =
## Access a column in the result row based on index.
row.values[idx]
proc `[]`*(row: ResultRow, column: string): DbValue =
## Access a column in te result row based on column name.
## The column name must be unambiguous.
let idx = row.columns.find(column)
assert idx != -1, "Column does not exist in row: '" & column & "'"
doAssert count(row.columns, column) == 1, "Column exists multiple times in row: '" & column & "'"
row.values[idx]
proc len*(row: ResultRow): int =
## Returns the number of columns in the result row.
row.values.len
proc values*(row: ResultRow): seq[DbValue] =
## Returns all column values in the result row.
row.values
proc columns*(row: ResultRow): seq[string] =
## Returns all column names in the result row.
row.columns
proc unpack*[T: tuple](row: ResultRow, _: typedesc[T]): T =
## Calls ``fromDbValue`` on each element of ``row`` and returns it
## as a tuple.
doAssert row.len == result.typeof.tupleLen,
"Unpack expected a tuple with " & $row.len & " field(s) but found: " & $T
var idx = 0
for value in result.fields:
value = row[idx].fromDbValue(type(value))
idx.inc
#
# Deprecations
#
proc rows*(db: DbConn, sql: string, params: varargs[DbValue, toDbValue]): seq[seq[DbValue]]
{.deprecated: "use 'all' instead".} =
db.all(sql, params).mapIt(it.values)
iterator rows*(db: DbConn, sql: string, params: varargs[DbValue, toDbValue]): seq[DbValue]
{.deprecated: "use 'iterate' instead".} =
for row in db.all(sql, params):
yield row.values
proc unpack*[T: tuple](row: seq[DbValue], _: typedesc[T]): T {.deprecated.} =
ResultRow(values: row).unpack(T)