Hi
I have an application that writes a lot of data to tables in a MSSQL table. And other windows that need to display this data.
The problem I see is that the data just written isn't being shown in the other windows unless the application is shut down and started again. So the 'new' data must be cached within the application and only written back to the table at application end. Or the other window is just reading th 'old' data rather than the new data.
How can I force my application to always read data from the actual table and not use any cached data?