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:
parent
215657e16a
commit
5bd3045498
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user