ActiveRecord
Indicates the index of the active record in the internal cache of records.
Delphi syntax:
property ActiveRecord: Integer;
C++ syntax:
__property int ActiveRecord = {read=FActiveRecord, nodefault};
Description:
[...]
Note: Unidirectional datasets never cache records. For unidirectional datasets, the ActiveRecord property is meaningless (and always 0).
This is the guide of Deplhi7, i can't find this property into Zeos DataSet implementation...
Will be a future implementation?
Regards,
Andrea Piovesan
ActiveRecord property
Moderators: gto, cipto_kh, EgonHugeist, mdaems
I was developing a TDBTreeView, so I needed that property, because I'have not to use TZQuery or TZTable, but a TDataSet implementation (TZQuery&Table are TDataSet implementation, are them?)... I've solved the missing in other way using other TDataSet properties.gto wrote:hello!
try the property RecNo
ZQuery.RecNo (ZTable and ZReadOnlyQuery has it too, I think) returns the number of the record in the "internal cache" of component
try it, see if it's what you are looking for
Thanks for the attention,
Andrea.