Click here to Skip to main content
15,920,633 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
assume a database is existed with all necessary fields, i need a code to catch any changes done to a perticular account identified by some id of user.
Posted

1 solution

You may want to consider implementing a trigger in your database. A trigger is a special kind of stored procedure that automatically executes when an event (e.g. change to an account) occurs in the database server. Find out more: CREATE TRIGGER (Transact-SQL)[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900