improved support for multiple statement execution and recordset paging

This commit is contained in:
Aleksandar Fabijanic
2009-08-11 14:34:21 +00:00
parent c6ee567a71
commit 49101951a2
12 changed files with 267 additions and 61 deletions

View File

@@ -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