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

Interface ExtContext

sqlx_context.go:44–48  ·  sqlx_context.go::ExtContext

ExtContext is a union interface which can bind, query, and exec, with Context used by NamedQueryContext and NamedExecContext.

Source from the content-addressed store, hash-verified

42// ExtContext is a union interface which can bind, query, and exec, with Context
43// used by NamedQueryContext and NamedExecContext.
44type ExtContext interface {
45 binder
46 QueryerContext
47 ExecerContext
48}
49
50// SelectContext executes a query using the provided Queryer, and StructScans
51// each row into dest, which must be a slice. If the slice elements are

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected