Versions in this module Expand all Collapse all v1 v1.1.0 Nov 10, 2022 v1.0.0 Sep 13, 2022 Changes in this version + func Delete(ctx context.Context, db Querier, tableName string, id interface{}) error + func Get(ctx context.Context, db Querier, tableName string, options *FindOptions, ...) error + func Insert(ctx context.Context, db Querier, tag, tableName string, ...) error + func Select(ctx context.Context, db Querier, tableName string, options *FindAllOptions, ...) error + func Update(ctx context.Context, db Querier, tag, tableName string, id interface{}, ...) error + type FindAllOptions = sqlquery.FindAllOptions + func NewFindAllOptions() *FindAllOptions + type FindOptions = sqlquery.FindOptions + func NewFindOptions() *FindOptions + type Querier interface + Exec func(ctx context.Context, sql string, arguments ...interface{}) (pgconn.CommandTag, error) + Query func(ctx context.Context, query string, args ...interface{}) (pgx.Rows, error) Other modules containing this package github.com/allisson/pgxutil/v2