mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
sqlite: use in-memory database in examples and tests
This commit is contained in:

committed by
Alexander Medvednikov

parent
32473eeafe
commit
3643dcbf4b
@@ -1,8 +1,7 @@
|
||||
import sqlite
|
||||
|
||||
fn main() {
|
||||
/*
|
||||
db := sqlite.connect('users.db')
|
||||
db := sqlite.connect(':memory:')
|
||||
db.exec("create table users (id integer primary key, name text default '');")
|
||||
|
||||
db.exec("insert into users (name) values ('Sam')")
|
||||
@@ -19,5 +18,4 @@ fn main() {
|
||||
for row in users {
|
||||
println(row.vals)
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
Reference in New Issue
Block a user