Hi,
i think i found a solution. I created the following trigger:
Code:
CREATE TRIGGER insert_localtime AFTER INSERT ON my_tab
BEGIN
UPDATE my_tab SET start = TIME('NOW', 'LOCALTIME') WHERE rowid = new.rowid AND start = '';
END
The only thing that is a bit strange to me is that my trigger don't works if i use "AND start = NULL".