Documentation
¶
Overview ¶
Package sqx is a convenient library for db interactions in go. It provides nice bindings around fluent SQL query building, scanning, and generics
Index ¶
- Constants
- Variables
- func ContainsUpdates(v any, excluded ...string) bool
- func Ptr[T any](t T) *T
- func Read[T any](ctx context.Context) typedRunCtx[T]
- func SetDefaultLogger(logger Logger)
- func SetDefaultQueryable(queryable Queryable)
- func ToSetMap(v any, excluded ...string) (map[string]any, error)
- func ToSetMapAlias(tableName string, v any, excluded ...string) (map[string]any, error)
- func TypedWrite[T any](ctx context.Context) typedRunCtx[T]
- func Write(ctx context.Context) runCtx
- type And
- type Clause
- type DeleteBuilder
- func (b DeleteBuilder) Debug() DeleteBuilder
- func (b DeleteBuilder) Do() error
- func (b DeleteBuilder) DoResult() (sql.Result, error)
- func (b DeleteBuilder) From(from string) DeleteBuilder
- func (b DeleteBuilder) Limit(limit uint64) DeleteBuilder
- func (b DeleteBuilder) Offset(offset uint64) DeleteBuilder
- func (b DeleteBuilder) OrderBy(orderBys ...string) DeleteBuilder
- func (b DeleteBuilder) Prefix(sql string, args ...interface{}) DeleteBuilder
- func (b DeleteBuilder) PrefixExpr(expr Sqlizer) DeleteBuilder
- func (b DeleteBuilder) Suffix(sql string, args ...interface{}) DeleteBuilder
- func (b DeleteBuilder) Where(pred interface{}, rest ...interface{}) DeleteBuilder
- func (b DeleteBuilder) WithLogger(logger Logger) DeleteBuilder
- func (b DeleteBuilder) WithQueryable(queryable Queryable) DeleteBuilder
- type EmptyResult
- type Eq
- type ErrTooManyRows
- type Gt
- type GtOrEq
- type ILike
- type InsertBuilder
- func (b InsertBuilder) Columns(columns ...string) InsertBuilder
- func (b InsertBuilder) Debug() InsertBuilder
- func (b InsertBuilder) Do() error
- func (b InsertBuilder) DoResult() (sql.Result, error)
- func (b InsertBuilder) Options(options ...string) InsertBuilder
- func (b InsertBuilder) Prefix(sql string, args ...interface{}) InsertBuilder
- func (b InsertBuilder) PrefixExpr(expr Sqlizer) InsertBuilder
- func (b InsertBuilder) SetMap(clauses map[string]interface{}, errors ...error) InsertBuilder
- func (b InsertBuilder) Suffix(sql string, args ...interface{}) InsertBuilder
- func (b InsertBuilder) SuffixExpr(expr Sqlizer) InsertBuilder
- func (b InsertBuilder) Values(values ...any) InsertBuilder
- func (b InsertBuilder) WithLogger(logger Logger) InsertBuilder
- func (b InsertBuilder) WithQueryable(queryable Queryable) InsertBuilder
- type InsertManyBuilder
- func (b InsertManyBuilder[T]) Columns(columns ...string) InsertManyBuilder[T]
- func (b InsertManyBuilder[T]) Debug() InsertManyBuilder[T]
- func (b InsertManyBuilder[T]) Do() error
- func (b InsertManyBuilder[T]) DoResult() (sql.Result, error)
- func (b InsertManyBuilder[T]) FromItems(items []T, excluded ...string) InsertManyBuilder[T]
- func (b InsertManyBuilder[T]) Values(values ...any) InsertManyBuilder[T]
- func (b InsertManyBuilder[T]) WithLogger(logger Logger) InsertManyBuilder[T]
- func (b InsertManyBuilder[T]) WithQueryable(queryable Queryable) InsertManyBuilder[T]
- type Like
- type Logger
- type Lt
- type LtOrEq
- type NotEq
- type NotILike
- type NotLike
- type Nullable
- type Or
- type Queryable
- type SelectBuilder
- func (b SelectBuilder[T]) All() ([]T, error)
- func (b SelectBuilder[T]) Column(column any, args ...any) SelectBuilder[T]
- func (b SelectBuilder[T]) Columns(columns ...string) SelectBuilder[T]
- func (b SelectBuilder[T]) CrossJoin(join string, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) Debug() SelectBuilder[T]
- func (b SelectBuilder[T]) Distinct() SelectBuilder[T]
- func (b SelectBuilder[T]) First() (*T, error)
- func (b SelectBuilder[T]) FirstScalar() (T, error)
- func (b SelectBuilder[T]) From(from string) SelectBuilder[T]
- func (b SelectBuilder[T]) FromSelect(from SelectBuilder[T], alias string) SelectBuilder[T]
- func (b SelectBuilder[T]) GroupBy(groupBys ...string) SelectBuilder[T]
- func (b SelectBuilder[T]) Having(pred interface{}, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) InnerJoin(join string, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) Join(join string, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) JoinClause(pred interface{}, args ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) LeftJoin(join string, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) Limit(limit uint64) SelectBuilder[T]
- func (b SelectBuilder[T]) Offset(offset uint64) SelectBuilder[T]
- func (b SelectBuilder[T]) One() (*T, error)
- func (b SelectBuilder[T]) OneScalar() (T, error)
- func (b SelectBuilder[T]) OneScalarStrict() (T, error)
- func (b SelectBuilder[T]) OneStrict() (*T, error)
- func (b SelectBuilder[T]) Options(options ...string) SelectBuilder[T]
- func (b SelectBuilder[T]) OrderBy(orderBys ...string) SelectBuilder[T]
- func (b SelectBuilder[T]) OrderByClause(pred interface{}, args ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) Prefix(sql string, args ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) PrefixExpr(expr Sqlizer) SelectBuilder[T]
- func (b SelectBuilder[T]) RemoveColumns() SelectBuilder[T]
- func (b SelectBuilder[T]) RemoveLimit() SelectBuilder[T]
- func (b SelectBuilder[T]) RemoveOffset() SelectBuilder[T]
- func (b SelectBuilder[T]) RightJoin(join string, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) Suffix(sql string, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) SuffixExpr(expr Sqlizer) SelectBuilder[T]
- func (b SelectBuilder[T]) UnionAll(other SelectBuilder[T]) SelectBuilder[T]
- func (b SelectBuilder[T]) Where(pred interface{}, rest ...interface{}) SelectBuilder[T]
- func (b SelectBuilder[T]) WithLogger(logger Logger) SelectBuilder[T]
- func (b SelectBuilder[T]) WithQueryable(queryable Queryable) SelectBuilder[T]
- type Sqlizer
- type UpdateBuilder
- func (b UpdateBuilder) CrossJoin(join string, rest ...interface{}) UpdateBuilder
- func (b UpdateBuilder) Debug() UpdateBuilder
- func (b UpdateBuilder) Do() error
- func (b UpdateBuilder) DoResult() (sql.Result, error)
- func (b UpdateBuilder) InnerJoin(join string, rest ...interface{}) UpdateBuilder
- func (b UpdateBuilder) Join(join string, rest ...interface{}) UpdateBuilder
- func (b UpdateBuilder) JoinClause(pred interface{}, args ...interface{}) UpdateBuilder
- func (b UpdateBuilder) LeftJoin(join string, rest ...interface{}) UpdateBuilder
- func (b UpdateBuilder) Limit(limit uint64) UpdateBuilder
- func (b UpdateBuilder) Offset(offset uint64) UpdateBuilder
- func (b UpdateBuilder) OrderBy(orderBys ...string) UpdateBuilder
- func (b UpdateBuilder) Prefix(sql string, args ...interface{}) UpdateBuilder
- func (b UpdateBuilder) PrefixExpr(expr Sqlizer) UpdateBuilder
- func (b UpdateBuilder) RightJoin(join string, rest ...interface{}) UpdateBuilder
- func (b UpdateBuilder) Set(column string, value any) UpdateBuilder
- func (b UpdateBuilder) SetMap(clauses map[string]any, errors ...error) UpdateBuilder
- func (b UpdateBuilder) Suffix(sql string, args ...interface{}) UpdateBuilder
- func (b UpdateBuilder) SuffixExpr(expr Sqlizer) UpdateBuilder
- func (b UpdateBuilder) Where(pred interface{}, rest ...interface{}) UpdateBuilder
- func (b UpdateBuilder) WithLogger(logger Logger) UpdateBuilder
- func (b UpdateBuilder) WithQueryable(queryable Queryable) UpdateBuilder
Examples ¶
Constants ¶
const VERSION = "0.6.0"
Variables ¶
var NoDBTagsError = errors.New("No db tags detected")
Functions ¶
func ContainsUpdates ¶
ContainsUpdates returns true if an update filter is nonempty. This function panics if v is not a pointer to a struct.
Example ¶
package main import ( "fmt" "github.com/stytchauth/sqx" ) func main() { type filter struct { Value *string `db:"first_col"` Values *[]string `db:"second_col"` } first := sqx.ContainsUpdates(&filter{ Value: sqx.Ptr("example"), Values: &[]string{"a", "b"}, }) second := sqx.ContainsUpdates(&filter{ /* Empty! */ }) fmt.Printf("first: %t second: %t", first, second) }
Output: first: true second: false
func Ptr ¶
func Ptr[T any](t T) *T
Ptr is a convenience method for converting inline constants into pointers for use with ToClause and ToSetMap
Example ¶
type dogFilter struct { Breed *string `db:"breed"` PlaysFetch *bool `db:"plays_fetch"` } clause := ToClause(&dogFilter{ Breed: Ptr("husky"), }) sql, args, _ := clause.ToSql() fmt.Printf("%s, %s", sql, args)
Output: breed = ?, [husky]
func SetDefaultLogger ¶
func SetDefaultLogger(logger Logger)
SetDefaultLogger sets the logger that should be used to log information. If you need to change the logger for a specific request, use WithLogger
func SetDefaultQueryable ¶
func SetDefaultQueryable(queryable Queryable)
SetDefaultQueryable sets the DB query handler that should be used to run requests. If you need to change the DB query handler for a specific request, use WithQueryable
func ToSetMap ¶
ToSetMap converts a struct into a map[string]any based on the presence of "db" struct tags Nil values are skipped over automatically Add fields to the "excluded" arg to exclude them from the row
Example ¶
package main import ( "encoding/json" "fmt" "github.com/stytchauth/sqx" ) func main() { type filter struct { Value *string `db:"first_col"` Values *[]string `db:"second_col"` } setMap, _ := sqx.ToSetMap(&filter{ Value: sqx.Ptr("example"), Values: &[]string{"a", "b"}, }) out, _ := json.Marshal(setMap) fmt.Print(string(out)) }
Output: {"first_col":"example","second_col":["a","b"]}
func ToSetMapAlias ¶
ToSetMapAlias is like ToSetMap, but takes in a table alias
func TypedWrite ¶ added in v0.5.0
Types ¶
type Clause ¶
type Clause struct {
// contains filtered or unexported fields
}
Clause stores an Eq result, but also holds an error if one occurred during the conversion. You may think of this struct as a (Eq, error) tuple that implements the Sqlizer interface.
func ToClause ¶
ToClause converts a filter interface to a SQL Where clause by introspecting its db tags
Example ¶
type filter struct { Value *string `db:"first_col"` Values *[]string `db:"second_col"` } clause := ToClause(&filter{ Value: Ptr("example"), Values: &[]string{"a", "b"}, }) sql, args, _ := clause.ToSql() fmt.Printf("%s, %s", sql, args)
Output: first_col = ? AND second_col IN (?,?), [example a b]
func ToClauseAlias ¶
ToClauseAlias is like ToClause, but takes in a table alias
type DeleteBuilder ¶
type DeleteBuilder struct {
// contains filtered or unexported fields
}
DeleteBuilder wraps squirrel.DeleteBuilder and adds syntactic sugar for common usage patterns.
func (DeleteBuilder) Debug ¶
func (b DeleteBuilder) Debug() DeleteBuilder
Debug prints the DeleteBuilder state out to the provided logger
func (DeleteBuilder) DoResult ¶ added in v0.2.0
func (b DeleteBuilder) DoResult() (sql.Result, error)
DoResult executes the DeleteBuilder and also returns the sql.Result for a successful query. This is useful if you wish to check the value of the LastInsertId() or RowsAffected() methods since Do() will discard this information.
func (DeleteBuilder) From ¶
func (b DeleteBuilder) From(from string) DeleteBuilder
From sets the table to be deleted from.
func (DeleteBuilder) Limit ¶
func (b DeleteBuilder) Limit(limit uint64) DeleteBuilder
Limit sets a LIMIT clause on the query.
func (DeleteBuilder) Offset ¶
func (b DeleteBuilder) Offset(offset uint64) DeleteBuilder
Offset sets a OFFSET clause on the query.
func (DeleteBuilder) OrderBy ¶
func (b DeleteBuilder) OrderBy(orderBys ...string) DeleteBuilder
OrderBy adds ORDER BY expressions to the query.
func (DeleteBuilder) Prefix ¶
func (b DeleteBuilder) Prefix(sql string, args ...interface{}) DeleteBuilder
Prefix adds an expression to the beginning of the query
func (DeleteBuilder) PrefixExpr ¶
func (b DeleteBuilder) PrefixExpr(expr Sqlizer) DeleteBuilder
PrefixExpr adds an expression to the very beginning of the query
func (DeleteBuilder) Suffix ¶
func (b DeleteBuilder) Suffix(sql string, args ...interface{}) DeleteBuilder
Suffix adds an expression to the end of the query
func (DeleteBuilder) Where ¶
func (b DeleteBuilder) Where(pred interface{}, rest ...interface{}) DeleteBuilder
Where adds WHERE expressions to the query.
See SelectBuilder.Where for more information.
func (DeleteBuilder) WithLogger ¶
func (b DeleteBuilder) WithLogger(logger Logger) DeleteBuilder
WithLogger configures a Queryable for this DeleteBuilder instance
func (DeleteBuilder) WithQueryable ¶
func (b DeleteBuilder) WithQueryable(queryable Queryable) DeleteBuilder
WithQueryable configures a Queryable for this DeleteBuilder instance
type EmptyResult ¶ added in v0.2.0
type EmptyResult struct{}
EmptyResult represents a result with no rows affected. This is used for an UpdateBuilder that has no pending changes since the query would be a noop.
func (EmptyResult) LastInsertId ¶ added in v0.2.0
func (e EmptyResult) LastInsertId() (int64, error)
func (EmptyResult) RowsAffected ¶ added in v0.2.0
func (e EmptyResult) RowsAffected() (int64, error)
type ErrTooManyRows ¶
ErrTooManyRows indicates that a query returned more rows than expected. This is used in calls to OneStrict() which expects a single row to be returned. In Strict mode, this error is raised if the number of rows returned is not equal to the expected number. If you received this error in your code and didn't expect it, check out the One() or First() methods instead.
func (ErrTooManyRows) Error ¶
func (e ErrTooManyRows) Error() string
type GtOrEq ¶ added in v0.3.0
GtOrEq represents a SQL >= expression. It is a re-export of squirrel.GtOrEq.
type ILike ¶ added in v0.6.0
ILike represents a SQL ILIKE expression. It is a re-export of squirrel.ILike.
type InsertBuilder ¶
type InsertBuilder struct {
// contains filtered or unexported fields
}
InsertBuilder wraps squirrel.InsertBuilder and adds syntactic sugar for common usage patterns.
func (InsertBuilder) Columns ¶
func (b InsertBuilder) Columns(columns ...string) InsertBuilder
Columns adds insert columns to the query.
func (InsertBuilder) Debug ¶
func (b InsertBuilder) Debug() InsertBuilder
Debug prints the InsertBuilder state out to the provided logger
func (InsertBuilder) DoResult ¶ added in v0.2.0
func (b InsertBuilder) DoResult() (sql.Result, error)
DoResult executes the InsertBuilder and also returns the sql.Result for a successful query. This is useful if you wish to check the value of the LastInsertId() or RowsAffected() methods since Do() will discard this information.
func (InsertBuilder) Options ¶
func (b InsertBuilder) Options(options ...string) InsertBuilder
Options adds keyword options before the INTO clause of the query.
func (InsertBuilder) Prefix ¶
func (b InsertBuilder) Prefix(sql string, args ...interface{}) InsertBuilder
Prefix adds an expression to the beginning of the query
func (InsertBuilder) PrefixExpr ¶
func (b InsertBuilder) PrefixExpr(expr Sqlizer) InsertBuilder
PrefixExpr adds an expression to the very beginning of the query
func (InsertBuilder) SetMap ¶
func (b InsertBuilder) SetMap(clauses map[string]interface{}, errors ...error) InsertBuilder
SetMap set columns and values for insert builder from a map of column name and value note that it will reset all previous columns and values was set if any
func (InsertBuilder) Suffix ¶
func (b InsertBuilder) Suffix(sql string, args ...interface{}) InsertBuilder
Suffix adds an expression to the end of the query
func (InsertBuilder) SuffixExpr ¶
func (b InsertBuilder) SuffixExpr(expr Sqlizer) InsertBuilder
SuffixExpr adds an expression to the end of the query
func (InsertBuilder) Values ¶
func (b InsertBuilder) Values(values ...any) InsertBuilder
Values adds a single row's values to the query.
func (InsertBuilder) WithLogger ¶
func (b InsertBuilder) WithLogger(logger Logger) InsertBuilder
WithLogger configures a Queryable for this InsertBuilder instance
func (InsertBuilder) WithQueryable ¶
func (b InsertBuilder) WithQueryable(queryable Queryable) InsertBuilder
WithQueryable configures a Queryable for this InsertBuilder instance
type InsertManyBuilder ¶ added in v0.5.0
type InsertManyBuilder[T any] struct { // contains filtered or unexported fields }
InsertManyBuilder wraps squirrel.InsertBuilder and adds syntactic sugar for common usage patterns. This is a special case that includes a type constraint since generic methods are not supported in Go. In order to implement FromItems, we need a type constraint, but this is only possible if the struct itself is also generic. As such, the InsertManyBuilder is more constrained than InsertBuilder, but this is by design since *most* use cases should prefer the InsertBuilder unless they explicitly want to use FromItems.
func (InsertManyBuilder[T]) Columns ¶ added in v0.5.0
func (b InsertManyBuilder[T]) Columns(columns ...string) InsertManyBuilder[T]
Columns adds insert columns to the query.
func (InsertManyBuilder[T]) Debug ¶ added in v0.5.0
func (b InsertManyBuilder[T]) Debug() InsertManyBuilder[T]
Debug prints the InsertManyBuilder state out to the provided logger
func (InsertManyBuilder[T]) Do ¶ added in v0.5.0
func (b InsertManyBuilder[T]) Do() error
Do executes the InsertManyBuilder
func (InsertManyBuilder[T]) DoResult ¶ added in v0.5.0
func (b InsertManyBuilder[T]) DoResult() (sql.Result, error)
DoResult executes the InsertManyBuilder and also returns the sql.Result for a successful query. This is useful if you wish to check the value of the LastInsertId() or RowsAffected() methods since Do() will discard this information.
func (InsertManyBuilder[T]) FromItems ¶ added in v0.5.0
func (b InsertManyBuilder[T]) FromItems(items []T, excluded ...string) InsertManyBuilder[T]
FromItems generates an InsertManyBuilder from a slice of items. The first item in the slice is used to determine the columns for the insert statement. If excluded columns are provided, they will be removed from the list of columns. All items should be of the same type.
func (InsertManyBuilder[T]) Values ¶ added in v0.5.0
func (b InsertManyBuilder[T]) Values(values ...any) InsertManyBuilder[T]
Values adds a single row's values to the query.
func (InsertManyBuilder[T]) WithLogger ¶ added in v0.5.0
func (b InsertManyBuilder[T]) WithLogger(logger Logger) InsertManyBuilder[T]
WithLogger configures a Queryable for this InsertManyBuilder instance
func (InsertManyBuilder[T]) WithQueryable ¶ added in v0.5.0
func (b InsertManyBuilder[T]) WithQueryable(queryable Queryable) InsertManyBuilder[T]
WithQueryable configures a Queryable for this InsertManyBuilder instance
type Like ¶ added in v0.6.0
Like represents a SQL LIKE expression. It is a re-export of squirrel.Like.
type Logger ¶
type Logger interface { // Printf prints output using the provided logger // Arguments are passed in the style of fmt.Printf. Printf(format string, v ...any) }
Logger is a simple interface that can be used to log events in the sqx package. It contains a single Printf function that takes a format string and arguments, much like fmt.Printf.
func MakeLogger ¶
MakeLogger creates a new Logger interface by using the provided function as the logger's printf function.
type LtOrEq ¶ added in v0.3.0
LtOrEq represents a SQL <= expression. It is a re-export of squirrel.LtOrEq.
type NotILike ¶ added in v0.6.0
NotILike represents a SQL NOT ILIKE expression. It is a re-export of squirrel.NotILike.
type NotLike ¶ added in v0.6.0
NotLike represents a SQL NOT LIKE expression. It is a re-export of squirrel.NotLike.
type Nullable ¶
type Nullable[T any] **T
func NewNull ¶
NewNull creates a Nullable[T] from a provided value use it to set nullable fields in Update calls to a null value
Example ¶
type updateFilter struct { Field2 Nullable[string] `db:"field_2"` } sm, _ := ToSetMap(&updateFilter{ Field2: NewNull[string](), }) fmt.Printf("setting field_2 to %v", reflect.ValueOf(sm["field_2"]).Elem().Interface())
Output: setting field_2 to <nil>
func NewNullable ¶
NewNullable creates a Nullable[T] from a provided value use it to set nullable fields in Update calls to a concrete value
Example ¶
type updateFilter struct { Field1 Nullable[int] `db:"field_1"` } sm, _ := ToSetMap(&updateFilter{ Field1: NewNullable(1), }) fmt.Printf("setting field_1 to %v", reflect.ValueOf(sm["field_1"]).Elem().Elem().Interface())
Output: setting field_1 to 1
type Queryable ¶
type Queryable interface { ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row }
Queryable is an interface wrapping common database access methods.
This is useful in cases where it doesn't matter whether the database handle is the root handle (*sql.DB) or an already-open transaction (*sql.Tx).
type SelectBuilder ¶
type SelectBuilder[T any] struct { // contains filtered or unexported fields }
SelectBuilder wraps squirrel.SelectBuilder and adds syntactic sugar for common usage patterns.
func (SelectBuilder[T]) All ¶
func (b SelectBuilder[T]) All() ([]T, error)
All returns all results from the query as a slice of T.
func (SelectBuilder[T]) Column ¶
func (b SelectBuilder[T]) Column(column any, args ...any) SelectBuilder[T]
Column adds a result column to the query. Unlike Columns, Column accepts args which will be bound to placeholders in the columns string, for example:
Column("IF(col IN ("+squirrel.Placeholders(3)+"), 1, 0) as col", 1, 2, 3)
func (SelectBuilder[T]) Columns ¶
func (b SelectBuilder[T]) Columns(columns ...string) SelectBuilder[T]
Columns adds result columns to the query.
func (SelectBuilder[T]) CrossJoin ¶
func (b SelectBuilder[T]) CrossJoin(join string, rest ...interface{}) SelectBuilder[T]
CrossJoin adds a CROSS JOIN clause to the query.
func (SelectBuilder[T]) Debug ¶
func (b SelectBuilder[T]) Debug() SelectBuilder[T]
Debug prints the SQL query using the builder's logger and then returns b, unmodified. If the builder has no logger set (and SetDefaultLogger has not been called), then log.Printf is used instead.
func (SelectBuilder[T]) Distinct ¶
func (b SelectBuilder[T]) Distinct() SelectBuilder[T]
Distinct adds a DISTINCT clause to the query.
func (SelectBuilder[T]) First ¶
func (b SelectBuilder[T]) First() (*T, error)
First returns the first result from the query, or an error if there was a problem. This is useful for queries that are expected to return more than one result, but you only care about the first one. Note that if you haven't added an ORDER BY clause to your query, the first result is not guaranteed to be the same each time you run the query.
func (SelectBuilder[T]) FirstScalar ¶
func (b SelectBuilder[T]) FirstScalar() (T, error)
FirstScalar is like First but dereferences the result into a scalar value. If an error is raised, the scalar value will be the zero value of the type.
func (SelectBuilder[T]) From ¶
func (b SelectBuilder[T]) From(from string) SelectBuilder[T]
From sets the FROM clause of the query.
func (SelectBuilder[T]) FromSelect ¶
func (b SelectBuilder[T]) FromSelect(from SelectBuilder[T], alias string) SelectBuilder[T]
FromSelect sets a subquery into the FROM clause of the query.
func (SelectBuilder[T]) GroupBy ¶
func (b SelectBuilder[T]) GroupBy(groupBys ...string) SelectBuilder[T]
GroupBy adds GROUP BY expressions to the query.
func (SelectBuilder[T]) Having ¶
func (b SelectBuilder[T]) Having(pred interface{}, rest ...interface{}) SelectBuilder[T]
Having adds an expression to the HAVING clause of the query.
See Where.
func (SelectBuilder[T]) InnerJoin ¶
func (b SelectBuilder[T]) InnerJoin(join string, rest ...interface{}) SelectBuilder[T]
InnerJoin adds a INNER JOIN clause to the query.
func (SelectBuilder[T]) Join ¶
func (b SelectBuilder[T]) Join(join string, rest ...interface{}) SelectBuilder[T]
Join adds a JOIN clause to the query.
func (SelectBuilder[T]) JoinClause ¶
func (b SelectBuilder[T]) JoinClause(pred interface{}, args ...interface{}) SelectBuilder[T]
JoinClause adds a join clause to the query.
func (SelectBuilder[T]) LeftJoin ¶
func (b SelectBuilder[T]) LeftJoin(join string, rest ...interface{}) SelectBuilder[T]
LeftJoin adds a LEFT JOIN clause to the query.
func (SelectBuilder[T]) Limit ¶
func (b SelectBuilder[T]) Limit(limit uint64) SelectBuilder[T]
Limit sets a LIMIT clause on the query.
func (SelectBuilder[T]) Offset ¶
func (b SelectBuilder[T]) Offset(offset uint64) SelectBuilder[T]
Offset sets a OFFSET clause on the query.
func (SelectBuilder[T]) One ¶
func (b SelectBuilder[T]) One() (*T, error)
One returns a single result from the query, or an error if there was a problem. This runs in "non-strict" mode which means that if the underlying query returns more than one row, a warning is logged but no error is raised. If you want to raise an error if the underlying query returns more than one result, use OneStrict. If you instead expect that more than one result may be returned and this is not cause for concern, use First.
func (SelectBuilder[T]) OneScalar ¶
func (b SelectBuilder[T]) OneScalar() (T, error)
OneScalar is like One but dereferences the result into a scalar value. If an error is raised, the scalar value will be the zero value of the type.
func (SelectBuilder[T]) OneScalarStrict ¶
func (b SelectBuilder[T]) OneScalarStrict() (T, error)
OneScalarStrict is like OneStrict but dereferences the result into a scalar value. If an error is raised, the scalar value will be the zero value of the type.
func (SelectBuilder[T]) OneStrict ¶
func (b SelectBuilder[T]) OneStrict() (*T, error)
OneStrict returns a single result from the query, or an error if there was a problem. This runs in "strict" mode which means that if the underlying query returns more than one row, an error is raised. You may instead use One to downgrade this error into a warning from the saved logger, or First to return the first result for cases where you expect more than one result can be returned from the underlying query and this is not cause for concern.
func (SelectBuilder[T]) Options ¶
func (b SelectBuilder[T]) Options(options ...string) SelectBuilder[T]
Options adds select option to the query
func (SelectBuilder[T]) OrderBy ¶
func (b SelectBuilder[T]) OrderBy(orderBys ...string) SelectBuilder[T]
OrderBy adds ORDER BY expressions to the query.
func (SelectBuilder[T]) OrderByClause ¶
func (b SelectBuilder[T]) OrderByClause(pred interface{}, args ...interface{}) SelectBuilder[T]
OrderByClause adds ORDER BY clause to the query.
func (SelectBuilder[T]) Prefix ¶
func (b SelectBuilder[T]) Prefix(sql string, args ...interface{}) SelectBuilder[T]
Prefix adds an expression to the beginning of the query
func (SelectBuilder[T]) PrefixExpr ¶
func (b SelectBuilder[T]) PrefixExpr(expr Sqlizer) SelectBuilder[T]
PrefixExpr adds an expression to the very beginning of the query
func (SelectBuilder[T]) RemoveColumns ¶
func (b SelectBuilder[T]) RemoveColumns() SelectBuilder[T]
RemoveColumns remove all columns from query. Must add a new column with Column or Columns methods, otherwise return a error.
func (SelectBuilder[T]) RemoveLimit ¶
func (b SelectBuilder[T]) RemoveLimit() SelectBuilder[T]
RemoveLimit removes LIMIT clause
func (SelectBuilder[T]) RemoveOffset ¶
func (b SelectBuilder[T]) RemoveOffset() SelectBuilder[T]
RemoveOffset removes OFFSET clause.
func (SelectBuilder[T]) RightJoin ¶
func (b SelectBuilder[T]) RightJoin(join string, rest ...interface{}) SelectBuilder[T]
RightJoin adds a RIGHT JOIN clause to the query.
func (SelectBuilder[T]) Suffix ¶
func (b SelectBuilder[T]) Suffix(sql string, rest ...interface{}) SelectBuilder[T]
Suffix adds an expression to the end of the query
func (SelectBuilder[T]) SuffixExpr ¶
func (b SelectBuilder[T]) SuffixExpr(expr Sqlizer) SelectBuilder[T]
SuffixExpr adds an expression to the end of the query
func (SelectBuilder[T]) UnionAll ¶
func (b SelectBuilder[T]) UnionAll(other SelectBuilder[T]) SelectBuilder[T]
UnionAll adds a UNION ALL clause to the query from another SelectBuilder of the same type.
func (SelectBuilder[T]) Where ¶
func (b SelectBuilder[T]) Where(pred interface{}, rest ...interface{}) SelectBuilder[T]
Where adds an expression to the WHERE clause of the query.
Expressions are ANDed together in the generated SQL.
Where accepts several types for its pred argument:
nil OR "" - ignored.
string - SQL expression. If the expression has SQL placeholders then a set of arguments must be passed as well, one for each placeholder.
map[string]interface{} OR Eq - map of SQL expressions to values. Each key is transformed into an expression like "<key> = ?", with the corresponding value bound to the placeholder. If the value is nil, the expression will be "<key> IS NULL". If the value is an array or slice, the expression will be "<key> IN (?,?,...)", with one placeholder for each item in the value. These expressions are ANDed together.
Where will panic if pred isn't any of the above types.
func (SelectBuilder[T]) WithLogger ¶
func (b SelectBuilder[T]) WithLogger(logger Logger) SelectBuilder[T]
WithLogger configures a Queryable for this SelectBuilder instance
func (SelectBuilder[T]) WithQueryable ¶
func (b SelectBuilder[T]) WithQueryable(queryable Queryable) SelectBuilder[T]
WithQueryable configures a Queryable for this SelectBuilder instance
type Sqlizer ¶
Sqlizer is an interface containing the ToSql method. It is a re-export of squirrel.Sqlizer.
type UpdateBuilder ¶
type UpdateBuilder struct {
// contains filtered or unexported fields
}
UpdateBuilder wraps squirrel.UpdateBuilder and adds syntactic sugar for common usage patterns.
func (UpdateBuilder) CrossJoin ¶
func (b UpdateBuilder) CrossJoin(join string, rest ...interface{}) UpdateBuilder
CrossJoin adds a CROSS JOIN clause to the query.
func (UpdateBuilder) Debug ¶
func (b UpdateBuilder) Debug() UpdateBuilder
Debug prints the UpdateBuilder state out to the provided logger
func (UpdateBuilder) DoResult ¶ added in v0.2.0
func (b UpdateBuilder) DoResult() (sql.Result, error)
DoResult executes the InsertBuilder and also returns the sql.Result for a successful query. This is useful if you wish to check the value of the LastInsertId() or RowsAffected() methods since Do() will discard this information.
func (UpdateBuilder) InnerJoin ¶
func (b UpdateBuilder) InnerJoin(join string, rest ...interface{}) UpdateBuilder
InnerJoin adds a INNER JOIN clause to the query.
func (UpdateBuilder) Join ¶
func (b UpdateBuilder) Join(join string, rest ...interface{}) UpdateBuilder
Join adds a JOIN clause to the query.
func (UpdateBuilder) JoinClause ¶
func (b UpdateBuilder) JoinClause(pred interface{}, args ...interface{}) UpdateBuilder
JoinClause adds a join clause to the query.
func (UpdateBuilder) LeftJoin ¶
func (b UpdateBuilder) LeftJoin(join string, rest ...interface{}) UpdateBuilder
LeftJoin adds a LEFT JOIN clause to the query.
func (UpdateBuilder) Limit ¶
func (b UpdateBuilder) Limit(limit uint64) UpdateBuilder
Limit sets a LIMIT clause on the query.
func (UpdateBuilder) Offset ¶
func (b UpdateBuilder) Offset(offset uint64) UpdateBuilder
Offset sets a OFFSET clause on the query.
func (UpdateBuilder) OrderBy ¶
func (b UpdateBuilder) OrderBy(orderBys ...string) UpdateBuilder
OrderBy adds ORDER BY expressions to the query.
func (UpdateBuilder) Prefix ¶
func (b UpdateBuilder) Prefix(sql string, args ...interface{}) UpdateBuilder
Prefix adds an expression to the beginning of the query
func (UpdateBuilder) PrefixExpr ¶
func (b UpdateBuilder) PrefixExpr(expr Sqlizer) UpdateBuilder
PrefixExpr adds an expression to the very beginning of the query
func (UpdateBuilder) RightJoin ¶
func (b UpdateBuilder) RightJoin(join string, rest ...interface{}) UpdateBuilder
RightJoin adds a RIGHT JOIN clause to the query.
func (UpdateBuilder) Set ¶
func (b UpdateBuilder) Set(column string, value any) UpdateBuilder
Set adds SET clauses to the query.
func (UpdateBuilder) SetMap ¶
func (b UpdateBuilder) SetMap(clauses map[string]any, errors ...error) UpdateBuilder
SetMap is a convenience method which calls Set for each key/value pair in clauses.
func (UpdateBuilder) Suffix ¶
func (b UpdateBuilder) Suffix(sql string, args ...interface{}) UpdateBuilder
Suffix adds an expression to the end of the query
func (UpdateBuilder) SuffixExpr ¶
func (b UpdateBuilder) SuffixExpr(expr Sqlizer) UpdateBuilder
SuffixExpr adds an expression to the end of the query
func (UpdateBuilder) Where ¶
func (b UpdateBuilder) Where(pred interface{}, rest ...interface{}) UpdateBuilder
Where adds WHERE expressions to the query.
See SelectBuilder.Where for more information.
func (UpdateBuilder) WithLogger ¶
func (b UpdateBuilder) WithLogger(logger Logger) UpdateBuilder
WithLogger configures a Queryable for this UpdateBuilder instance
func (UpdateBuilder) WithQueryable ¶
func (b UpdateBuilder) WithQueryable(queryable Queryable) UpdateBuilder
WithQueryable configures a Queryable for this UpdateBuilder instance