ExecerContext is the interface that wraps the ExecContext method. Exec executes the given query as implemented by database/sql.ExecContext.
| 15 | // |
| 16 | // Exec executes the given query as implemented by database/sql.ExecContext. |
| 17 | type ExecerContext interface { |
| 18 | ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) |
| 19 | } |
| 20 | |
| 21 | // QueryerContext is the interface that wraps the QueryContext method. |
| 22 | // |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…