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

14 lines
130 B
V

import db.sqlite
struct User {
id int
}
fn main() {
db := sqlite.connect(':memory:')!
_ := sql db {
select from User
}
}