I've tried this:
select * from oehr_employees;
select * from oehr_employees where employee_id = 206;
DELETE FROM oehr_employees WHERE employee_id = 206;
rollback;
And I've get this:
ResultsExplainDescribeSaved SQLHistory
Rollback statement not applicable. All statements are automatically committed.
Is there a way to do commit, savepoint and rollback?