/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/named_param/sqlite/go/query.sql.go
96 строк
2 KB
Kyle Gray
Release 1.31.1 (#4407)
22 апр 2026, 17:52
Не верифицирован
22 апр 2026, 17:52
a95e91d
Код
Авторство
О чём код?
// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.31.1 // source: query.sql package querytest import ( "context" ) const atParams = `-- name: AtParams :many SELECT name FROM foo WHERE name = ?1 ` func (q *Queries) AtParams(ctx context.Context, slug string) ([]string, error) { rows, err := q.db.QueryContext(ctx, atParams, slug) if err != nil { return nil, err } defer rows.Close() var items []string for rows.Next() { var name string if err := rows.Scan(&name); err != nil { return nil, err } items = append(items, name) } if err := rows.Close(); err != nil { return nil, err } if err := rows.Err(); err != nil { return nil, err } return items, nil } const funcParams = `-- name: FuncParams :many SELECT name FROM foo WHERE name = ?1 ` func (q *Queries) FuncParams(ctx context.Context, slug string) ([]string, error) { rows, err := q.db.QueryContext(ctx, funcParams, slug) if err != nil { return nil, err } defer rows.Close() var items []string for rows.Next() { var name string if err := rows.Scan(&name); err != nil { return nil, err } items = append(items, name) } if err := rows.Close(); err != nil { return nil, err } if err := rows.Err(); err != nil { return nil, err } return items, nil } const insertAtParams = `-- name: InsertAtParams :one INSERT INTO foo(name, bio) values (?1, ?2) returning name ` type InsertAtParamsParams struct { Name string Bio string } func (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParamsParams) (string, error) { row := q.db.QueryRowContext(ctx, insertAtParams, arg.Name, arg.Bio) var name string err := row.Scan(&name) return name, err } const insertFuncParams = `-- name: InsertFuncParams :one INSERT INTO foo(name, bio) values (?1, ?2) returning name ` type InsertFuncParamsParams struct { Name string Bio string } func (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncParamsParams) (string, error) { row := q.db.QueryRowContext(ctx, insertFuncParams, arg.Name, arg.Bio) var name string err := row.Scan(&name) return name, err }