1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

RecordSet was missing currentRow method.

This commit is contained in:
Sandu Liviu Catalin 2021-02-04 02:44:10 +02:00
parent 508a0c3677
commit b12a8ac2a0

View File

@ -406,6 +406,10 @@ public:
bool isFiltered() const;
/// Returns true if recordset is filtered.
//@SQMOD: Modified/added for SqMod project
size_t currentRow() const;
/// Returns the current row.
private:
RecordSet();
@ -662,6 +666,10 @@ inline void RecordSet::formatNames() const
(*_pBegin)->formatNames();
}
inline size_t RecordSet::currentRow() const
{
return _currentRow;
}
} } // namespace Poco::Data