Is it possible to invoke DSLContext.transactionResult()
multiple times against the same transaction?
I'd like to insert rows into different tables within the same transaction and return the primary keys to the enclosing (non-transactional) code block.
I know that I can probably create some custom return type to hold multiple values but from a code readability perspective it would be preferable to invoke DSLContext.transactionResult()
multiple times and pass by an individual result each time.