Transaction Handling

The idea of transfer objects is to bundle up all database access functions needed for one request. The stored procedure implements all needed functionality. This result in more complex remote calls to the stored procedures but you achieve more performance, less latency and every call can atomically handled in a single transaction. The Raw JDBC Connector Builder is the only Connector Builder that let you manage the transactions. All other Connector Builders handle each request as a transaction. On success the transaction is commited, on failure the transaction is rollbacked and an exception is thrown.