fix compile errors

This commit is contained in:
Alex Fabijanic 2017-10-10 18:54:42 -05:00
parent 03e07f3d97
commit 6e6e3952e2
2 changed files with 2 additions and 3 deletions

View File

@ -16,7 +16,7 @@
#include "Poco/Data/LOB.h"
#include "Poco/Data/Statement.h"
#include "Poco/Data/RecordSet.h"
#include "Poco/Data/Rowfilter.h"
#include "Poco/Data/RowFilter.h"
#include "Poco/Data/JSONRowFormatter.h"
#include "Poco/Data/SQLChannel.h"
#include "Poco/Data/SessionFactory.h"

View File

@ -96,8 +96,7 @@ public:
Statement((rSession << query, Keywords::now)),
_currentRow(0),
_pBegin(new RowIterator(this, 0 == rowsExtracted())),
_pEnd(new RowIterator(this, true)),
_totalRowCount(UNKNOWN_TOTAL_ROW_COUNT)
_pEnd(new RowIterator(this, true))
/// Creates the RecordSet.
{
setRowFormatter(Keywords::format(rowFormatter));