| 36 | |
| 37 | |
| 38 | ResultSet::ResultSet(thread_db* tdbb, PreparedStatement* aStmt, jrd_tra* aTransaction) |
| 39 | : stmt(aStmt), |
| 40 | transaction(aTransaction), |
| 41 | firstFetchDone(false) |
| 42 | { |
| 43 | stmt->open(tdbb, transaction); |
| 44 | stmt->resultSet = this; |
| 45 | } |
| 46 | |
| 47 | |
| 48 | ResultSet::~ResultSet() |