RobbieZhao
Results
2
comments of
RobbieZhao
- Is there any other drivers that implement similar functionality? - The situation you're describing suggests a bad pattern in your code: you might have opened 5 connections but you're...
It appears this is what happened ``` begin; savepoint tx_1; -- First Begin() call creates a savepoint savepoint tx_2; -- Second Begin() call create another savepoint release savepoint tx_1; --...