ExtContext is a union interface which can bind, query, and exec, with Context used by NamedQueryContext and NamedExecContext.
| 42 | // ExtContext is a union interface which can bind, query, and exec, with Context |
| 43 | // used by NamedQueryContext and NamedExecContext. |
| 44 | type 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 |
nothing calls this directly
no outgoing calls
no test coverage detected