(ctx context.Context, query string, args ...any)
| 164 | } |
| 165 | |
| 166 | func (pdb *db) QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error) { |
| 167 | db, err := pdb.handle.DB() |
| 168 | if err != nil { |
| 169 | return nil, err |
| 170 | } |
| 171 | rows, err := db.QueryContext(ctx, query, args...) |
| 172 | return rows, pdb.handle.ConvertError(err) |
| 173 | } |
| 174 | |
| 175 | func (pdb *db) Rebind(query string) string { |
| 176 | return pdb.conn().Rebind(query) |
no test coverage detected