You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many databases support nested transactions through "savepoints". We could add this feature to withTransaction function, but this one must be a method of Connection because savepoints are implemented differently in databases. There is also some another differences in databases, so this is more logical to do withTransaction as Connection method and remove beginrollback and commit methods to unleash a driver developer's hands.
The text was updated successfully, but these errors were encountered:
Many databases support nested transactions through "savepoints". We could add this feature to
withTransaction
function, but this one must be a method ofConnection
because savepoints are implemented differently in databases. There is also some another differences in databases, so this is more logical to dowithTransaction
asConnection
method and removebegin
rollback
andcommit
methods to unleash a driver developer's hands.The text was updated successfully, but these errors were encountered: