Now I am writting about zquery and I found this property "ShowRecordTypes", that I not found any doc via google, except this:
https://lazarus.intern.ws/zeos_zquery.html
but none explanation.
I think that is similar a firedac to extract "delta" before commit updates, is it the same?
there is a example to see this property in action?
ShowRecordTypes, explanation, how to use?
-
- Platinum Boarder
- Posts: 1956
- Joined: 17.01.2011, 14:17
Re: ShowRecordTypes, explanation, how to use?
Hello Hamacker,
I never used it. But ShowRecordTypes only makes sense with CachedUpdates. If you cache updates, you might want to show what was deleted or what was modified only. One can do that using the ShowRecordTypes property. Setting ShowRecordTypes to utDeleted when cachedUpdates is true most probably will list all deleted records. Does that help?
Best regards,
Jan
I never used it. But ShowRecordTypes only makes sense with CachedUpdates. If you cache updates, you might want to show what was deleted or what was modified only. One can do that using the ShowRecordTypes property. Setting ShowRecordTypes to utDeleted when cachedUpdates is true most probably will list all deleted records. Does that help?
Best regards,
Jan
Re: ShowRecordTypes, explanation, how to use?
Thanks Jan, I think the same.