-
Notifications
You must be signed in to change notification settings - Fork 5
/
port-sqlite3-repository.go
76 lines (57 loc) · 1.4 KB
/
port-sqlite3-repository.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
package main
import (
"database/sql"
_ "github.com/mattn/go-sqlite3"
)
type SqliteItemRepository struct {
dbPath string
}
func NewSqliteItemRepository(dbPath string) (this *SqliteItemRepository) {
this = new(SqliteItemRepository)
this.dbPath = dbPath
return
}
func (this *SqliteItemRepository) Items() (items []*Item, err error) {
db, err := sql.Open("sqlite3", this.dbPath)
if err != nil {
return
}
defer db.Close()
rows, err := db.Query("select Z_PK, ZTITLE, ZBODY, ZRAW_BODY from ZITEM where ZIN_TRASH is null order by ZUPDATED_AT desc")
if err != nil {
return
}
defer rows.Close()
for rows.Next() {
var id int
var title string
var html sql.NullString
var markdown sql.NullString
if err := rows.Scan(&id, &title, &html, &markdown); err != nil {
return items, err
}
items = append(items, NewItem(id, title, html.String, markdown.String))
}
return
}
func (this *SqliteItemRepository) ItemOfId(id int) (item *Item, err error) {
db, err := sql.Open("sqlite3", this.dbPath)
if err != nil {
return
}
defer db.Close()
stmt, err := db.Prepare("select ZTITLE, ZBODY, ZRAW_BODY from ZITEM where Z_PK = ?")
if err != nil {
return
}
defer stmt.Close()
var title string
var html sql.NullString
var markdown sql.NullString
err = stmt.QueryRow(id).Scan(&title, &html, &markdown)
if err != nil {
return
}
item = NewItem(id, title, html.String, markdown.String)
return
}