mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 03:57:14 +01:00
RecordSet was missing currentRow method.
This commit is contained in:
parent
508a0c3677
commit
b12a8ac2a0
@ -406,6 +406,10 @@ public:
|
|||||||
bool isFiltered() const;
|
bool isFiltered() const;
|
||||||
/// Returns true if recordset is filtered.
|
/// Returns true if recordset is filtered.
|
||||||
|
|
||||||
|
//@SQMOD: Modified/added for SqMod project
|
||||||
|
size_t currentRow() const;
|
||||||
|
/// Returns the current row.
|
||||||
|
|
||||||
private:
|
private:
|
||||||
RecordSet();
|
RecordSet();
|
||||||
|
|
||||||
@ -662,6 +666,10 @@ inline void RecordSet::formatNames() const
|
|||||||
(*_pBegin)->formatNames();
|
(*_pBegin)->formatNames();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline size_t RecordSet::currentRow() const
|
||||||
|
{
|
||||||
|
return _currentRow;
|
||||||
|
}
|
||||||
|
|
||||||
} } // namespace Poco::Data
|
} } // namespace Poco::Data
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user