mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
sqlite example
This commit is contained in:
parent
16c4415d4c
commit
1ac1626357
21
examples/sqlite.v
Normal file
21
examples/sqlite.v
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import sqlite
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
db := sqlite.connect('users.db')
|
||||||
|
db.exec("create table users (id integer primary key, name text default '');")
|
||||||
|
|
||||||
|
db.exec("insert into users (name) values ('Sam')")
|
||||||
|
db.exec("insert into users (name) values ('Peter')")
|
||||||
|
db.exec("insert into users (name) values ('Kate')")
|
||||||
|
|
||||||
|
nr_users := db.q_int('select count(*) from users')
|
||||||
|
println('nr users = $nr_users')
|
||||||
|
|
||||||
|
name := db.q_string('select name from users where id = 1')
|
||||||
|
assert name == 'Sam'
|
||||||
|
|
||||||
|
users := db.exec('select * from users')
|
||||||
|
for row in users {
|
||||||
|
println(row.vals)
|
||||||
|
}
|
||||||
|
}
|
@ -60,7 +60,7 @@ pub fn (db DB) exec(query string) []Row {
|
|||||||
for i in 0..nr_cols {
|
for i in 0..nr_cols {
|
||||||
val := tos_clone(C.sqlite3_column_text(stmt, i))
|
val := tos_clone(C.sqlite3_column_text(stmt, i))
|
||||||
row.vals << val
|
row.vals << val
|
||||||
println(val)
|
//println(val)
|
||||||
}
|
}
|
||||||
rows << row
|
rows << row
|
||||||
}
|
}
|
||||||
|
3
vlib/sqlite/sqlite_test.v
Normal file
3
vlib/sqlite/sqlite_test.v
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
fn test_sqlite() {
|
||||||
|
// TODO
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user