(ctx context.Context, argsV []driver.NamedValue)
| 621 | } |
| 622 | |
| 623 | func (s *Stmt) QueryContext(ctx context.Context, argsV []driver.NamedValue) (driver.Rows, error) { |
| 624 | return s.conn.QueryContext(ctx, s.sd.SQL, argsV) |
| 625 | } |
| 626 | |
| 627 | type rowValueFunc func(src []byte) (driver.Value, error) |
| 628 |
nothing calls this directly
no test coverage detected