1234567891011121314151617181920212223242526272829303132 |
- // Code generated by sqlc. DO NOT EDIT.
- // versions:
- // sqlc v1.27.0
- package booktest
- import (
- "context"
- "github.com/jackc/pgx/v5"
- "github.com/jackc/pgx/v5/pgconn"
- )
- type DBTX interface {
- Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)
- Query(context.Context, string, ...interface{}) (pgx.Rows, error)
- QueryRow(context.Context, string, ...interface{}) pgx.Row
- }
- func New(db DBTX) *Queries {
- return &Queries{db: db}
- }
- type Queries struct {
- db DBTX
- }
- func (q *Queries) WithTx(tx pgx.Tx) *Queries {
- return &Queries{
- db: tx,
- }
- }
|