sqlc

package
v0.0.4-alpha Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 14, 2025 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CreateFindingsParams

type CreateFindingsParams struct {
	InstanceIDArray []pgtype.UUID
	DetailsArray    [][]byte
}

type DBTX

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
}

type Finding

type Finding struct {
	ID         int32
	InstanceID pgtype.UUID
	Details    []byte
	CreatedAt  pgtype.Timestamp
	UpdatedAt  pgtype.Timestamp
}

type FindingsByIDRow

type FindingsByIDRow struct {
	ID      int32
	Details []byte
}

type Queries

type Queries struct {
	// contains filtered or unexported fields
}

func New

func New(db DBTX) *Queries

func (*Queries) CreateFindings

func (q *Queries) CreateFindings(ctx context.Context, arg CreateFindingsParams) error

func (*Queries) FindingsByID

func (q *Queries) FindingsByID(ctx context.Context, instanceID pgtype.UUID) ([]FindingsByIDRow, error)

func (*Queries) UpdateFinding

func (q *Queries) UpdateFinding(ctx context.Context, arg UpdateFindingParams) error

func (*Queries) WithTx

func (q *Queries) WithTx(tx pgx.Tx) *Queries

type UpdateFindingParams

type UpdateFindingParams struct {
	Details    []byte
	UpdatedAt  pgtype.Timestamp
	InstanceID pgtype.UUID
	ID         int32
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL