Documentation
¶
Overview ¶
Package queries implements convenience helpers for working with SQL queries.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Builder ¶
type Builder struct {
// contains filtered or unexported fields
}
Builder is a raw SQL query builder. The zero value is ready to use. Do not copy a non-zero Builder. Do not reuse a single Builder for multiple queries.
func (*Builder) Appendf ¶
Appendf formats according to the given format and appends the result to the query. It works like fmt.Appendf, i.e. all rules from the fmt package are applied. In addition, Appendf supports %?, %$, and %@ verbs, which are automatically expanded to the query placeholders ?, $N, and @pN, where N is the auto-incrementing counter. The corresponding arguments can then be accessed with the Builder.Args method. IMPORTANT: to avoid SQL injections, make sure to pass arguments from user input with placeholder verbs. Always test your queries.
Placeholder verbs to database placeholders:
- MySQL, SQLite: %? -> ?
- PostgreSQL: %$ -> $N
- MSSQL: %@ -> @pN
type Interceptor ¶ added in v0.2.0
type Interceptor struct {
// Driver is a database driver.
// It must implement [driver.ExecerContext] and [driver.QueryerContext] (most drivers do).
// Required.
Driver driver.Driver
// ExecContext is a callback for both [sql.DB.ExecContext] and [sql.Tx.ExecContext].
// The implementation must call execer.ExecerContext(ctx, query, args) and return the result.
// Optional.
ExecContext func(ctx context.Context, query string, args []driver.NamedValue, execer driver.ExecerContext) (driver.Result, error)
// QueryContext is a callback for both [sql.DB.QueryContext] and [sql.Tx.QueryContext].
// The implementation must call queryer.QueryContext(ctx, query, args) and return the result.
// Optional.
QueryContext func(ctx context.Context, query string, args []driver.NamedValue, queryer driver.QueryerContext) (driver.Rows, error)
}
Interceptor is a driver.Driver wrapper that allows to register callbacks for database queries. It must first be registered with sql.Register with the same name that is then passed to sql.Open:
interceptor := queries.Interceptor{...}
sql.Register("interceptor", interceptor)
db, err := sql.Open("interceptor", "dsn")
func (Interceptor) Open ¶ added in v0.2.0
func (i Interceptor) Open(name string) (driver.Conn, error)
Open implements driver.Driver. Do not use it directly.
func (Interceptor) OpenConnector ¶ added in v0.2.0
func (i Interceptor) OpenConnector(name string) (driver.Connector, error)
OpenConnector implements driver.DriverContext. Do not use it directly.
Directories
¶
| Path | Synopsis |
|---|---|
|
internal
|
|
|
assert
Package assert implements assertions for the standard testing package.
|
Package assert implements assertions for the standard testing package. |
|
assert/EF
Package EF provides type aliases for the parent assert package.
|
Package EF provides type aliases for the parent assert package. |