(context.Context, string, ...interface{})
| 41 | // DBTX represents a database connection or transaction. |
| 42 | type DBTX interface { |
| 43 | ExecContext(context.Context, string, ...interface{}) (sql.Result, error) |
| 44 | PrepareContext(context.Context, string) (*sql.Stmt, error) |
| 45 | QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error) |
| 46 | QueryRowContext(context.Context, string, ...interface{}) *sql.Row |
no outgoing calls