I am using a table as a message queue and \"signing up\" for updates by using a SqlDependency. Everywhere I read, people are saying \"look out for the limitations of it\" but not specifically saying w
I would like to make use of SQL Server notifications to capture insert/update events at my database within a windows service. I am attempting to use the SQLDependency object. The MSDN articles make th
I have a few questions that i would like to clear Can u use SqlDependency or SqlCacheDependency to find out which particular data item has changed in the database?
Is there a way to test if a MySQL table\'s data has changed at all, without connecting or querying. This might sound weird, but in ASP.NET you can set up SqlDependencies that are kind of events that
I want to allow user开发者_Python百科s on the website to queue a report (enter the request in a sql table).The queue will be processed by a windows app that will read the queue from the sql server, ru
I\'m using SqlDependency to monitor for changes in a database. Let\'s say, these are stock quotes, to make the example easy to understand. The application also uses (another) SqlDependeny-Object to mo
I am trying to get SQL Dependency notifications working with LINQ. I am successful with hard-coded command text:
I have a big problem. When I implement a SqlDependency watcher in a windows form, everything works fine as long as I invoke my \"OnChance\" event to the ui thread.
So I\'ve just inherited an application which used the SQL Dependency function associated with SQL Notification Services in order to perform some functionality whenever one of the tables in the DB was
I\'m using the SqlDependency class and have been trying unsuccessfully to find a list of possible combinations of the Type, Source and Info properties of the SqlNotificationEventArgs object.