diff options
Diffstat (limited to 'lib/impure/db_sqlite.nim')
-rwxr-xr-x | lib/impure/db_sqlite.nim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/impure/db_sqlite.nim b/lib/impure/db_sqlite.nim index 5196e4807..d3ff3c0d2 100755 --- a/lib/impure/db_sqlite.nim +++ b/lib/impure/db_sqlite.nim @@ -130,9 +130,11 @@ proc GetValue*(db: TDbConn, query: TSqlQuery, var stmt = setupQuery(db, query, args) if step(stmt) == SQLITE_ROW: let cb = column_bytes(stmt, 0) - if cb == 0: return "" - result = newStringOfCap(cb) - add(result, column_text(stmt, 0)) + if cb == 0: + result = "" + else: + result = newStringOfCap(cb) + add(result, column_text(stmt, 0)) if finalize(stmt) != SQLITE_OK: dbError(db) else: result = "" |