Alexander Lyotov
Results
1
issues of
Alexander Lyotov
The database [help](https://www.encode.io/databases/connections_and_transactions/) suggests the following way to use the low-level transaction API: ```Python transaction = await database.transaction() try: ... except: await transaction.rollback() else: await transaction.commit() ``` But if I...