(context.Context, string, ...interface{})
| 12 | |
| 13 | type DBTX interface { |
| 14 | ExecContext(context.Context, string, ...interface{}) (sql.Result, error) |
| 15 | PrepareContext(context.Context, string) (*sql.Stmt, error) |
| 16 | QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) |
| 17 | QueryRowContext(context.Context, string, ...interface{}) *sql.Row |
no outgoing calls