I posted this before, but didn't get a suitable answer that fits my requirements. I am looking for technology to notify a C ++ application when a SQL Server table is modified. Our middle tier is C ++, and we donβt want to switch to the .NET infrastructure, which means that we cannot use SQLDependency or SQL Notification Servers. At the moment, we also adhere to SQL Server 2005, which also eliminates the external activation of SQL Service Broker (which is implemented in SQL 2008).
To give a more complete picture of what I'm trying to achieve: our database is updated with new information; Whenever a new piece of information is received, we would like to click this on the C ++ application so that its toolbar displays the updated data for the user.
We know that we can do this if a C ++ application polls the database, but I see it as an inefficient architecture and would like SQL to push information or notification in C ++.
source share