Hi,
we need to setup transactions as follows, i was wondering if it was possible and how to go about it.
Method A()
{
InsertRowIntoTable();
foreach operation
{
try
{
StartTrans();
ProcessOperation();
CommitTrans();
}
catch
{
RollBackTransaction();
DeleteRowFromTable();
}
}
DeleteRowFromTable();
}