HI *,
my UI application will display data fetched from a known database / table.
The table content will be modified by another process - assume the rows will be only added to the table during the application run.
So I decided to implement a kind of polling for this.
I know the table name and the database schema. What is the best way to do following:
* on the very begin of the application I will read the content of the table and display this (chart, grid, etc.)
* periodically I will get a modified table and update my UI (with a newly added rows)
What is the best way to implement this?
Thank you
Rostislaw