Rodrigo Silva
12/06/2022, 11:07 AMnewSuspendedTransaction {
runCatching {
insert_on_table_one
insert_on_table_two
insert_on_table_three
...
insert_on_table_N
}.onFailure { /* some_code */ }
}
and for example, insert_on_table_three fails, will rollback occur on 2 and 1, or not?Emil Kantis
12/06/2022, 11:26 AM