-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathexample_test.go
60 lines (47 loc) · 1.44 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
// +build !windows
// +build sqlite
package db
import (
"log"
inspect "github.com/vadv/gopher-lua-libs/inspect"
lua "github.com/yuin/gopher-lua"
)
// db_ud:query()
func Example_package() {
state := lua.NewState()
Preload(state)
inspect.Preload(state)
source := `
local db = require("db")
local inspect = require("inspect")
local sqlite, err = db.open("sqlite3", "file:test.db?cache=shared&mode=memory")
if err then error(err) end
local result, err = sqlite:query("select \"ok\";")
if err then error(err) end
print(inspect(result.rows))
local _, err = sqlite:exec("CREATE TABLE t (id int, name string);")
if err then error(err) end
local result, err = sqlite:exec("INSERT INTO t VALUES (1, \"chook\");")
if err then error(err) end
print(inspect(result, {newline="", indent=""}))
local result, err = sqlite:exec("INSERT INTO t VALUES (2, \"gek\");")
if err then error(err) end
print(inspect(result, {newline="", indent=""}))
local result, err = sqlite:query("select * from t order by id desc;")
if err then error(err) end
print(inspect(result.columns))
for _, row in pairs(result.rows) do
print(inspect(row))
end
`
if err := state.DoString(source); err != nil {
log.Fatal(err.Error())
}
// Output:
// { { "ok" } }
// {last_insert_id = 1,rows_affected = 1}
// {last_insert_id = 2,rows_affected = 1}
// { "id", "name" }
// { 2, "gek" }
// { 1, "chook" }
}