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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.25.0
// source: users.sql
package model
import (
"context"
)
const getPwdById = `-- name: GetPwdById :one
SELECT pwd
FROM users
WHERE id = $1
`
// GetPwdById
//
// SELECT pwd
// FROM users
// WHERE id = $1
func (q *Queries) GetPwdById(ctx context.Context, id int32) (string, error) {
row := q.db.QueryRow(ctx, getPwdById, id)
var pwd string
err := row.Scan(&pwd)
return pwd, err
}
const getUserById = `-- name: GetUserById :one
SELECT id, name, pwd, description
FROM users
WHERE id = $1
`
// GetUserById
//
// SELECT id, name, pwd, description
// FROM users
// WHERE id = $1
func (q *Queries) GetUserById(ctx context.Context, id int32) (User, error) {
row := q.db.QueryRow(ctx, getUserById, id)
var i User
err := row.Scan(
&i.ID,
&i.Name,
&i.Pwd,
&i.Description,
)
return i, err
}
const getUserByName = `-- name: GetUserByName :one
SELECT id, name, pwd, description
FROM users
WHERE LOWER(name) = LOWER($1)
`
// GetUserByName
//
// SELECT id, name, pwd, description
// FROM users
// WHERE LOWER(name) = LOWER($1)
func (q *Queries) GetUserByName(ctx context.Context, lower string) (User, error) {
row := q.db.QueryRow(ctx, getUserByName, lower)
var i User
err := row.Scan(
&i.ID,
&i.Name,
&i.Pwd,
&i.Description,
)
return i, err
}
const getUsers = `-- name: GetUsers :many
SELECT id, name, pwd, description
FROM users
`
// GetUsers
//
// SELECT id, name, pwd, description
// FROM users
func (q *Queries) GetUsers(ctx context.Context) ([]User, error) {
rows, err := q.db.Query(ctx, getUsers)
if err != nil {
return nil, err
}
defer rows.Close()
var items []User
for rows.Next() {
var i User
if err := rows.Scan(
&i.ID,
&i.Name,
&i.Pwd,
&i.Description,
); err != nil {
return nil, err
}
items = append(items, i)
}
if err := rows.Err(); err != nil {
return nil, err
}
return items, nil
}
const updatePwd = `-- name: UpdatePwd :exec
UPDATE users
SET pwd = $1
WHERE id = $2
`
type UpdatePwdParams struct {
Pwd string
ID int32
}
// UpdatePwd
//
// UPDATE users
// SET pwd = $1
// WHERE id = $2
func (q *Queries) UpdatePwd(ctx context.Context, arg UpdatePwdParams) error {
_, err := q.db.Exec(ctx, updatePwd, arg.Pwd, arg.ID)
return err
}
|