(ctx context.Context, query string, args ...any)
| 360 | type querier interface { |
| 361 | QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error) |
| 362 | QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row |
| 363 | ExecContext(ctx context.Context, query string, args ...any) (sql.Result, error) |
| 364 | } |
| 365 |
no outgoing calls