Best practice – logging events (general) and changes (database)
Logging database changes as far as inserts/deletes/updates, as far as best practices go, is usually done by a trigger on the main table writing entries into a audit table (one audit table per real table, with identical columsn + when/what/who columns). The list of events as a generic list doesn’t exist. It’s really a function … Read more