Hello,
We're using sqldependency to refresh our application cache if need be, but we're finding that it is not alway refreshing when we expect it to.
While reviewing the code and looking at the cmd object associated with the sqlnotifications, I noticed that we're only selecting the identity column from the table.
Do we need to include all of the columns in the table that we're needing to 'reload' on change? In the below example I want the cache to be reloaded whenever col2 is updated or when there is a new record inserted to the table.
Do we need to change the select stmt to include col2 in order for the cache to be reloaded when col2 is updated for any record?
table definition
//current sql select associated with sqlnotification...notice that we're only selecting the identity column
Do we need this query instead to ensure the refresh since col2 is the only column that will be updated?
Thanks for any help.
We're using sqldependency to refresh our application cache if need be, but we're finding that it is not alway refreshing when we expect it to.
While reviewing the code and looking at the cmd object associated with the sqlnotifications, I noticed that we're only selecting the identity column from the table.
Do we need to include all of the columns in the table that we're needing to 'reload' on change? In the below example I want the cache to be reloaded whenever col2 is updated or when there is a new record inserted to the table.
Do we need to change the select stmt to include col2 in order for the cache to be reloaded when col2 is updated for any record?
table definition
Code:
create table tbCacheMe (col1 int identity, col2 varchar(25))
//current sql select associated with sqlnotification...notice that we're only selecting the identity column
Code:
'select col1 from dbo.tbCacheMe'
Do we need this query instead to ensure the refresh since col2 is the only column that will be updated?
Code:
'select col1, col2 from dbo.tbCacheMe'
Thanks for any help.