forked from sqlc-dev/sqlc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquery.sql.go
More file actions
34 lines (28 loc) · 753 Bytes
/
query.sql.go
File metadata and controls
34 lines (28 loc) · 753 Bytes
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
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.13.0
// source: query.sql
package batch
import (
"context"
)
const createAuthor = `-- name: CreateAuthor :one
INSERT INTO authors (name) VALUES ($1)
RETURNING author_id, name
`
func (q *Queries) CreateAuthor(ctx context.Context, name string) (Author, error) {
row := q.db.QueryRow(ctx, createAuthor, name)
var i Author
err := row.Scan(&i.AuthorID, &i.Name)
return i, err
}
const getAuthor = `-- name: GetAuthor :one
SELECT author_id, name FROM authors
WHERE author_id = $1
`
func (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author, error) {
row := q.db.QueryRow(ctx, getAuthor, authorID)
var i Author
err := row.Scan(&i.AuthorID, &i.Name)
return i, err
}