diff options
author | Araq <rumpf_a@web.de> | 2012-05-01 11:14:29 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-05-01 11:14:29 +0200 |
commit | e95f155af32eeb030337708efb3063d1afcf8fba (patch) | |
tree | 5ef44eea33028aaf140d895053c4b29a84761ca1 /lib/impure/db_postgres.nim | |
parent | ccae3146353422e2528455e674ce4ee16384ae99 (diff) | |
download | Nim-e95f155af32eeb030337708efb3063d1afcf8fba.tar.gz |
small bugfixes; documentation generator supports smilies for the forum
Diffstat (limited to 'lib/impure/db_postgres.nim')
-rwxr-xr-x | lib/impure/db_postgres.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/impure/db_postgres.nim b/lib/impure/db_postgres.nim index dff607081..506da9c84 100755 --- a/lib/impure/db_postgres.nim +++ b/lib/impure/db_postgres.nim @@ -108,7 +108,7 @@ proc getRow*(db: TDbConn, query: TSqlQuery, ## retrieves a single row. var res = setupQuery(db, query, args) var L = int(PQnfields(res)) - var result = newRow(L) + result = newRow(L) setRow(res, result, 0, L) PQclear(res) |