package
0.30.0
Repository: https://github.com/stephenafamo/bob.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Functions

SQL: a AND b AND c Go: psql.And("a", "b", "c").
SQL: $1, $2, $3 Go: psql.Args("a", "b", "c").
SQL: ($1, $2, $3) Go: psql.ArgGroup("a", "b", "c").
SQL: CASE WHEN a THEN b ELSE c END Go: psql.Case().When("a", "b").Else("c").
SQL: CAST(a AS int) Go: psql.Cast("a", "int").
SQL: a || b || c Go: psql.Concat("a", "b", "c").
No description provided by the author
F creates a function expression with the given name and args SQL: generate_series(1, 3) Go: psql.F("generate_series", 1, 3).
SQL: (a, b) Go: psql.Group("a", "b").
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SQL: NOT true Go: psql.Not("true").
SQL: a OR b OR c Go: psql.Or("a", "b", "c").
SQL: $1, $2, $3 Go: psql.Placeholder(3).
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
SQL: "table"."column" Go: psql.Quote("table", "column").
SQL: where a = $1 Go: psql.Raw("where a = ?", "something").
No description provided by the author
S creates a string literal SQL: 'a string' Go: psql.S("a string").
No description provided by the author
No description provided by the author
UseSchema modifies a context to add a schema that will be used when a tablle/view was generated with an empty schema.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

The table contains extract information from the struct and contains caches ???.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Interfaces

No description provided by the author

# Type aliases

No description provided by the author