v/vlib/mssql/result.v

14 lines
173 B
V
Raw Normal View History

2021-05-31 13:08:31 +02:00
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
}