-
Notifications
You must be signed in to change notification settings - Fork 95
/
example_test.go
73 lines (60 loc) · 1.17 KB
/
example_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package chai_test
import (
"fmt"
"github.com/chaisql/chai"
)
type User struct {
ID int64
Name string
Age uint32
}
func Example() {
// Create a database instance, here we'll store everything in memory
db, err := chai.Open(":memory:")
if err != nil {
panic(err)
}
defer db.Close()
// Create a table.
err = db.Exec("CREATE TABLE user (id int, name text, age int)")
if err != nil {
panic(err)
}
// Create an index.
err = db.Exec("CREATE INDEX idx_user_name ON user (name)")
if err != nil {
panic(err)
}
// Insert some data
err = db.Exec("INSERT INTO user (id, name, age) VALUES (?, ?, ?)", 10, "foo", 15)
if err != nil {
panic(err)
}
conn, err := db.Connect()
if err != nil {
panic(err)
}
defer conn.Close()
// Query some rows
stream, err := conn.Query("SELECT * FROM user WHERE id > ?", 1)
if err != nil {
panic(err)
}
// always close the result when you're done with it
defer stream.Close()
// Iterate over the results
err = stream.Iterate(func(r *chai.Row) error {
var u User
err = r.StructScan(&u)
if err != nil {
return err
}
fmt.Println(u)
return nil
})
if err != nil {
panic(err)
}
// Output:
// {10 foo 15}
}