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

tutorials: fix blog code

This commit is contained in:
Alexander Medvednikov
2021-01-01 20:38:22 +01:00
parent 7bcc5afbb6
commit 0c77bdf8f6
3 changed files with 11 additions and 4 deletions

View File

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