1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

pg: fix exec & exec_param_many (#6782)

This commit is contained in:
KJ Lawrence
2020-11-09 02:22:16 -05:00
committed by GitHub
parent b0053d8910
commit 7108f89b69
2 changed files with 29 additions and 41 deletions

View File

@ -134,6 +134,8 @@ pub fn (db DB) exec(query string) ([]Row, int) {
}
rows << row
}
C.sqlite3_finalize(stmt)
return rows, res
}