Hi,
I'm currently implementing the IGQIUpdater into my ad-hoc data source.
Is there an easy way for me to determine whether a given row is already present in the table?
My event handler gets an update, but this could be a new row or an update to an existing row.
Hi Ive,
If the update doesn't specify whether it's a new or updated entry, I believe you'll need to manage that distinction within your ad-hoc data source.
For instance, you could maintain a HashSet
containing all the keys you've already processed. When a new update arrives, you can check if its key is already in the HashSet
to determine whether it's new or has been updated.
Best regards,
Ward
It works like a charm! Thanks, Ward.