-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample_test.go
81 lines (64 loc) · 1.47 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
74
75
76
77
78
79
80
81
package orm_test
import (
"context"
"github.com/phogolabs/orm"
"github.com/phogolabs/orm/dialect/sql"
)
func ExampleGateway_First() {
gateway, err := orm.Open("sqlite3", "example.db")
if err != nil {
panic(err)
}
user := &User{}
query := orm.Query("SELECT * FROM users ORDER BY created_at")
if err := gateway.First(context.TODO(), query, user); err != nil {
panic(err)
}
}
func ExampleGateway_Only() {
gateway, err := orm.Open("sqlite3", "example.db")
if err != nil {
panic(err)
}
user := &User{}
query := orm.Query("SELECT * FROM users WHERE id = ?", "007")
if err := gateway.Only(context.TODO(), query, user); err != nil {
panic(err)
}
}
func ExampleGateway_Exec() {
gateway, err := orm.Open("sqlite3", "example.db")
if err != nil {
panic(err)
}
query :=
sql.Insert("users").
Columns("first_name", "last_name").
Values("John", "Doe").
Returning("id")
if _, err := gateway.Exec(context.TODO(), query); err != nil {
panic(err)
}
}
func ExampleRoutine() {
gateway, err := orm.Open("sqlite3", "example.db")
if err != nil {
panic(err)
}
users := []*User{}
routine := orm.Routine("show-top-5-users")
if err := gateway.All(context.TODO(), routine, &users); err != nil {
panic(err)
}
}
func ExampleSQL() {
gateway, err := orm.Open("sqlite3", "example.db")
if err != nil {
panic(err)
}
users := []*User{}
query := orm.Query("SELECT name FROM users")
if err := gateway.All(context.TODO(), query, &users); err != nil {
panic(err)
}
}