diff options
author | Araq <rumpf_a@web.de> | 2022-03-18 14:17:54 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2022-03-18 14:18:05 +0100 |
commit | 7b811deeffc762f8370b4cf7e8a353fd516d6543 (patch) | |
tree | f70c97862ea05018f0ba363fa38d842f1c31ccaf | |
parent | 7a50d663467f0e64ea8390e8c86269b25f312816 (diff) | |
download | Nim-7b811deeffc762f8370b4cf7e8a353fd516d6543.tar.gz |
db_sqlite: added a space
-rw-r--r-- | lib/impure/db_sqlite.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/db_sqlite.nim b/lib/impure/db_sqlite.nim index b600576df..1638d38c6 100644 --- a/lib/impure/db_sqlite.nim +++ b/lib/impure/db_sqlite.nim @@ -700,7 +700,7 @@ proc insert*(db: DbConn, query: SqlQuery, pkName: string, args: varargs[string, `$`]): int64 {.tags: [WriteDbEffect], since: (1, 3).} = ## same as insertId - result = tryInsert(db, query,pkName, args) + result = tryInsert(db, query, pkName, args) if result < 0: dbError(db) proc execAffectedRows*(db: DbConn, query: SqlQuery, |