Hello,
is there a standard way to implement a database transaction that spans multiple requests? I know that multiple DSRequests can be executed within the same transactional context when all of them are sent in a single request to the server, but is it possible to do the same across multiple requests? We’re trying to find a way to implement essentially a single depth undo functionality when user can enter “edit” mode, perform number of changes and then decide whether to commit all of them or discard.
is there a standard way to implement a database transaction that spans multiple requests? I know that multiple DSRequests can be executed within the same transactional context when all of them are sent in a single request to the server, but is it possible to do the same across multiple requests? We’re trying to find a way to implement essentially a single depth undo functionality when user can enter “edit” mode, perform number of changes and then decide whether to commit all of them or discard.
Comment