| 36 | static const ULONG PREFETCH_SIZE = 65536; // 64 KB |
| 37 | |
| 38 | DsqlCursor::DsqlCursor(DsqlDmlRequest* req, ULONG flags) |
| 39 | : m_dsqlRequest(req), m_message(req->getDsqlStatement()->getReceiveMsg()), |
| 40 | m_resultSet(NULL), m_flags(flags), |
| 41 | m_space(req->getPool(), SCRATCH), |
| 42 | m_state(BOS), m_eof(false), m_position(0), m_cachedCount(0) |
| 43 | { |
| 44 | TRA_link_cursor(m_dsqlRequest->req_transaction, this); |
| 45 | } |
| 46 | |
| 47 | DsqlCursor::~DsqlCursor() |
| 48 | { |
nothing calls this directly
no test coverage detected