Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application using TADODataSet and TADOConnection to connect with SQL Server database.

I would like to detect any modification that happens in the database.

modifications = Insert, Update, Delete

I want to know which TADODataset or which table has been modified.

I'm doing this because I have a multi-user application that works over local network. The users may add, delete or edit records in tables so I want to refresh the datasets to show the new modifications.

Also I want this to build a log.

I don't want to use TTime to keep watching the modifications.
I don't want to use triggers

I prefer a message from TADOConnection.

I'm using SQL Server 2005 and Delphi 2007 with ADO components.

New modification : I need it on SQL Server 2000

Regards.

share|improve this question
3  
It's called Query notifications but ADO components doesn't support it. – TLama Aug 11 '12 at 9:47
how can I handle this notifications in Delphi if ADO Doesn't support it? – user1512094 Aug 11 '12 at 9:52
2  
It's described in the post I've linked; you can try the WMI way described by RRUZ, purchase a commercial solution or write your own if you have time and experience :-) – TLama Aug 11 '12 at 9:59
1  
Thank you very much for this useful information... :( I don't have time and I don't have the enough experience :(...am gonna try WMI WAY – user1512094 Aug 11 '12 at 10:16
how to get notification if I'm using SQL Server 2000? – user1512094 Aug 11 '12 at 10:47
show 5 more comments

1 Answer

Maybe not the answer you expect but I think you should evaluate Bold for Delphi. My employer Attracs has successfuly used Bold over ten years in a big multiuser application. Bold have many features that simplify development when application grows and things got really complicated. Currently Bold do not support Unicode so it can only be used with D2007 or older. But we have plans to fix this in the future.

Bold solve your problem by having automatic updates of gui components when another user make changes to the database.

For more information about Bold see my blog at boldfordelphi.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.