Hi all,
I want to introduce a Auditing to my application, when a user updates, inserts or deletes data.
I have created a table in the database for this.
I have 2 choices of where I want to insert into the table from in my N tier application, either from the business logic layer of my application or by using a sql server trigger on the tables when they are inserted to, updated or deleted from.
I am looking for advice as to where is the best place to record data into the Audit database table, in the application or using a trigger?
Thanks!