/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/jsonb/sqlite/go/query.sql.go
67 строк
1 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" "encoding/json" ) const insertFoo = `-- name: InsertFoo :exec INSERT INTO foo ( a, b, c, d, e, f, g, h ) VALUES ( ?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8 ) RETURNING a, json(b), c, json(d), e, json(f), g, json(h) ` type InsertFooParams struct { A json.RawMessage B json.RawMessage C json.RawMessage D json.RawMessage E json.RawMessage F json.RawMessage G json.RawMessage H json.RawMessage } func (q *Queries) InsertFoo(ctx context.Context, arg InsertFooParams) error { _, err := q.db.ExecContext(ctx, insertFoo, arg.A, arg.B, arg.C, arg.D, arg.E, arg.F, arg.G, arg.H, ) return err } const selectFoo = `-- name: SelectFoo :exec SELECT a, json(b), c, json(d), e, json(f), g, json(h) FROM foo ` func (q *Queries) SelectFoo(ctx context.Context) error { _, err := q.db.ExecContext(ctx, selectFoo) return err }