mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
14 lines
173 B
V
14 lines
173 B
V
|
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
|
||
|
}
|