if the table is always being added to and you only want new events (preferably you'd have a timestamp field as well):
create a DBconnect connection with a query similar to the following:
SELECT * FROM [TABLE]
WHERE [TABLE].[uniqueeventID] > ?
ORDER BY [TABLE].[uniqueeventID] ASC
then use the rising column method to only retrieve new events added to the table.
If the entire table changes each time you look at it, do a batch collection to grab all events in the table on a scheduled basis.
... View more