Versions in this module Expand all Collapse all v0 v0.0.2 Feb 25, 2025 v0.0.1 Nov 7, 2024 Changes in this version + type DBQuerier struct + func NewQuerier(conn genericConn) *DBQuerier + func (q *DBQuerier) ArrayNested2(ctx context.Context) ([]ProductImageType, error) + func (q *DBQuerier) ArrayNested2Batch(batch genericBatch) + func (q *DBQuerier) ArrayNested2Scan(results pgx.BatchResults) ([]ProductImageType, error) + func (q *DBQuerier) Nested3(ctx context.Context) ([]ProductImageSetType, error) + func (q *DBQuerier) Nested3Batch(batch genericBatch) + func (q *DBQuerier) Nested3Scan(results pgx.BatchResults) ([]ProductImageSetType, error) + type Dimensions struct + Height int + Width int + type ProductImageSetType struct + Images []ProductImageType + Name string + OrigImage ProductImageType + type ProductImageType struct + Dimensions Dimensions + Source string + type Querier interface + ArrayNested2 func(ctx context.Context) ([]ProductImageType, error) + ArrayNested2Batch func(batch genericBatch) + ArrayNested2Scan func(results pgx.BatchResults) ([]ProductImageType, error) + Nested3 func(ctx context.Context) ([]ProductImageSetType, error) + Nested3Batch func(batch genericBatch) + Nested3Scan func(results pgx.BatchResults) ([]ProductImageSetType, error)