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

mysql: Using int.str() instead of string(int)

This commit is contained in:
Don Alfons Nisnoni 2020-05-06 17:53:47 +08:00 committed by GitHub
parent 215657e16a
commit 5bd3045498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ pub fn (r Result) rows() []Row {
if rr[i] == 0 {
row.vals << ''
} else {
row.vals << string(rr[i])
row.vals << string(&byte(rr[i]))
}
}
rows << row