Hello guys, I'm using ktor server and I followed t...
# server
m
Hello guys, I'm using ktor server and I followed the documentation about the database integration and exposed ORM, I have some operations between two tables and I want to open a parent transaction and inside it I want to open two child transactions and if one failed I want to rollback all the transactions in the parent transaction, how to do that?
t
Hello, you tried use this?
transaction {
//Do cool stuff
}
m
I found the problem I was doing nested transactions and that led to unexpected behaviour
1