(ctx *sql.Context, query string, args ...any)
| 57 | } |
| 58 | |
| 59 | func Query(ctx *sql.Context, query string, args ...any) (*stdsql.Rows, error) { |
| 60 | conn, err := GetConn(ctx) |
| 61 | if err != nil { |
| 62 | return nil, err |
| 63 | } |
| 64 | return conn.QueryContext(ctx, query, args...) |
| 65 | } |
| 66 | |
| 67 | func QueryRow(ctx *sql.Context, query string, args ...any) *stdsql.Row { |
| 68 | conn, err := GetConn(ctx) |
nothing calls this directly
no test coverage detected