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:
parent
508a0c3677
commit
b12a8ac2a0
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user