Creating Audit trail system

dcmphi

Member
Joined
Sep 14, 2017
Messages
10
Programming Experience
Beginner
I want to create an audit trail system in c# with access db for trace which data field is edited or deleted and which user delete or edit data field. How to create audit trail system in c# with access db. Is it possible?
 
Of course it's possible. With Access though, it will be all manual, so it will be just like any other data access. If you were to use SQL Server then you could make use of triggers on INSERT statements and automate the process somewhat.
 
@jmcilhinney thanks for reply. How can i create audit trail with access db? Can you give me a tutorial with demo project? I will very thankful.
 
Back
Top Bottom