diff options
Diffstat (limited to 'project2/iterate.cpp')
-rw-r--r-- | project2/iterate.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/project2/iterate.cpp b/project2/iterate.cpp index 91d5c75..9e5c7f7 100644 --- a/project2/iterate.cpp +++ b/project2/iterate.cpp @@ -35,13 +35,13 @@ Iterate::rowReady() const void Iterate::execute() const { - PerRowValues::beginRow(source.get()); + RowSet::beginRow(source.get()); try { source->execute(this); - PerRowValues::endRow(source.get()); + RowSet::endRow(source.get()); } catch (...) { - PerRowValues::endRow(source.get()); + RowSet::endRow(source.get()); throw; } } @@ -54,13 +54,13 @@ Iterate::executeChildren() const sq.second->execute(); } else { - PerRowValues::beginRow(NULL); + RowSet::beginRow(NULL); try { sq.second->execute(); - PerRowValues::endRow(NULL); + RowSet::endRow(NULL); } catch (...) { - PerRowValues::endRow(NULL); + RowSet::endRow(NULL); throw; } } |