Displaying 1 result from an estimated 1 matches for "release_savepoint".
2006 Jun 15
4
testing with transactions
...> database_transaction_rollback
if transaction_open
transaction_open = false
rollback_db_transaction
end
if savepoint_open
savepoint_open = false
rollback_to_savepoint(savepoint_name)
end
raise
end
ensure
commit_db_transaction if transaction_open
release_savepoint(savepoint_name) if savepoint_open
end
Best regards,
Laas