I'm working on a project that uses PowerSync (an external constraint) and it relies on Triggers in SQLite that HeidiSQL doesn't seem to like, for instance:
CREATE TRIGGER ABV_delete
after delete on ABV
for each row
begin
insert into powersync_crud(op,id,type) VALUES ('DELETE', OLD.UUID, 'ABV');
end
For some reason HeidiSQL throws an exception when trying to view this, it views fine in DB Browser for SQLite where is where I have copied it from.