using Transactions in PL/SQL
390382Nov 28 2006 — edited Nov 30 2006I have a package that does some inserts and updates. Now, I need the functionality of a transaction for my whole package such that if anything fails during execution of the procedures of the package, I can rollback all the changes or if there is no error, commit all the changes made by the package.Does PL/SQL has something similar to BEGIN TRANS-END TRANS block in SQL Server?