Hello everyone, I have a question concerning transactions. I dont find any answer in the documentation so here is the questions.
I start a transaction like this : ds.begin(ReadWrite.write); ds.getDefaultModel(); try { ds.commit; } catch (Exception ex) { ds.abort(); } finally { ds.end();} If in the transction everything crashes so the transction is still active. When i relaunch the application what is the state of the transaction that wasn't ended (because of the crash) ? Will i be able to start a new one with ds.begin ?