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

mysql: add more documentation (#7846)

This commit is contained in:
Don Alfons Nisnoni
2021-01-09 16:40:21 +08:00
committed by GitHub
parent 256ddcee1f
commit d645e45752
6 changed files with 192 additions and 173 deletions

View File

@@ -13,6 +13,5 @@ fn main() {
for row in res.rows() {
println(row.vals.join(', '))
}
res.free()
conn.close()
}