MCPcopy
hub / github.com/jmoiron/sqlx / SelectContext

Method SelectContext

sqlx_context.go:338–340  ·  view source on GitHub ↗

SelectContext within a transaction and context. Any placeholder parameters are replaced with supplied args.

(ctx context.Context, dest interface{}, query string, args ...interface{})

Source from the content-addressed store, hash-verified

336// SelectContext within a transaction and context.
337// Any placeholder parameters are replaced with supplied args.
338func (tx *Tx) SelectContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error {
339 return SelectContext(ctx, tx, dest, query, args...)
340}
341
342// GetContext within a transaction and context.
343// Any placeholder parameters are replaced with supplied args.

Callers

nothing calls this directly

Calls 1

SelectContextFunction · 0.85

Tested by

no test coverage detected