(ctx context.Context, query string, args ...interface{})
| 34 | type ConnPool interface { |
| 35 | PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) |
| 36 | ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) |
| 37 | QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) |
| 38 | QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row |
| 39 | } |
no outgoing calls