I transfer a SQL Table from a SQL Database with SQLDataAdapter and Fill-Method to a DataTable in C#.
The SQL DataTable recieves new datasets in a random time interval.
Now I want that my C# DataTable (DataGridview) gets updated on every new entry of the SQL Database in realtime i.e. I want to sync these two tables.
How can I solve that problem? With a trigger in the SQL Server? With a command in C#?
I just want to read the data.
Sounds to me that you’re in the need of MSSQL’s change tracking.
I think that reading this will be a good start at least: http://msdn.microsoft.com/en-us/library/cc714038.aspx
Hope that helps.