I have 3 tables say A, B, C. Out of which the Table C is LOCKED by some user.
I use some form to insert records in Table A & B and update C.
The Sql statements are in sequence.
It inserts rows in Table A & B.
But since Table C is LOCKED when I try to update it raises an error, so I rollback the transaction.
BUT STILL THE ROWS Gets committed in Table A & B. I DON'T want this.
Could anyone provide solution.
Thanks in Advance.
-Milind