ExecerContext is an interface used by MustExecContext and LoadFileContext
| 36 | |
| 37 | // ExecerContext is an interface used by MustExecContext and LoadFileContext |
| 38 | type ExecerContext interface { |
| 39 | ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) |
| 40 | } |
| 41 | |
| 42 | // ExtContext is a union interface which can bind, query, and exec, with Context |
| 43 | // used by NamedQueryContext and NamedExecContext. |
no outgoing calls
no test coverage detected