Events raised when table data changed SQL 2005, VB.NET 2005

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My application is written in VB.NET 2005 to display a table of a SQL 2005 in
a datagrid. I want to be notified or capture events when table data changed
(inserted, deleted, updated by another user) to update the datagrid. Is there
any way to do this

Thanks
Doan Nguyen
 
My application is written in VB.NET 2005 to display a table of a SQL
2005 in a datagrid. I want to be notified or capture events when table
data changed (inserted, deleted, updated by another user) to update
the datagrid. Is there any way to do this


You can capture the data change events at the data table level.

However, if there are other applications changing the data... you'll need
to use something like SQL Server Notification Services or database polling.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top