blob: f5483a2858e7c82c68341e882cfc93d4639c2521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module mssql
pub struct Row {
pub mut:
vals []string
}
pub struct Result {
pub mut:
rows []Row
// the number of rows affected by sql statement
num_rows_affected int
}
|