mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 11:06:50 +01:00
improved support for multiple statement execution and recordset paging
This commit is contained in:
@@ -45,7 +45,8 @@ namespace Data {
|
||||
|
||||
RowFormatter::RowFormatter(const std::string& prefix, const std::string& postfix):
|
||||
_prefix(prefix),
|
||||
_postfix(postfix)
|
||||
_postfix(postfix),
|
||||
_totalRowCount(0)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -55,4 +56,12 @@ RowFormatter::~RowFormatter()
|
||||
}
|
||||
|
||||
|
||||
void RowFormatter::reset()
|
||||
{
|
||||
_prefix = "";
|
||||
_postfix = "";
|
||||
_totalRowCount = INVALID_ROW_COUNT;
|
||||
}
|
||||
|
||||
|
||||
} } // namespace Poco::Data
|
||||
|
||||
Reference in New Issue
Block a user