mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-17 01:15:59 +01:00
Fix RecordSet example in Poco Data
This commit is contained in:
@@ -849,7 +849,7 @@ No worries -- that's what the RecordSet class does:
|
||||
std::cout << rs.columnName(col) << std::endl;
|
||||
|
||||
// iterate over all rows and columns
|
||||
for (RecordSet::Iterator it = rset.begin(); it != rset.end(); ++it)
|
||||
for (RecordSet::Iterator it = rs.begin(); it != rs.end(); ++it)
|
||||
std::cout << *it << " ";
|
||||
----
|
||||
|
||||
|
||||
Reference in New Issue
Block a user