How to implement log for your data in Servoy
Method 1: Manually maintain log: – To do this we have to create a log table which will store all the data changes. We can have fields like table_name, pk_value_of_the_record, field_name, old_value, new_value, modified_by_user_idx,modification_date, etc.. For this Servoy has some table level events like onRecordInsert onRecordUpdate onRecordDelete To keep track of the updates, create a…
read more