-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathquery.sql.go
More file actions
57 lines (49 loc) · 1.19 KB
/
query.sql.go
File metadata and controls
57 lines (49 loc) · 1.19 KB
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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.22.0
// source: query.sql
package querytest
import (
"context"
)
const addAuthor = `-- name: AddAuthor :execlastid
INSERT INTO authors (
address,
name,
bio
) VALUES (
?,
COALESCE(?, ""),
COALESCE(?, "")
)
`
type AddAuthorParams struct {
Address string
CalName interface{}
CalDescription interface{}
}
func (q *Queries) AddAuthor(ctx context.Context, arg AddAuthorParams) (int64, error) {
result, err := q.db.ExecContext(ctx, addAuthor, arg.Address, arg.CalName, arg.CalDescription)
if err != nil {
return 0, err
}
return result.LastInsertId()
}
const addEvent = `-- name: AddEvent :execlastid
INSERT INTO ` + "`" + `Event` + "`" + ` (
Timezone
) VALUES (
(CASE WHEN ? = "calendar" THEN (SELECT cal.Timezone FROM Calendar cal WHERE cal.IdKey = ?) ELSE ? END)
)
`
type AddEventParams struct {
Timezone interface{}
CalendarIdKey string
}
func (q *Queries) AddEvent(ctx context.Context, arg AddEventParams) (int64, error) {
result, err := q.db.ExecContext(ctx, addEvent, arg.Timezone, arg.CalendarIdKey, arg.Timezone)
if err != nil {
return 0, err
}
return result.LastInsertId()
}