mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fix sqlite test
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
import sqlite
|
||||
|
||||
fn main() {
|
||||
/*
|
||||
db := sqlite.connect('users.db')
|
||||
db.exec("create table users (id integer primary key, name text default '');")
|
||||
|
||||
@ -18,4 +19,5 @@ fn main() {
|
||||
for row in users {
|
||||
println(row.vals)
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
Reference in New Issue
Block a user