On 02/18/2013 07:40 AM, Wujek Srujek wrote:
Hi. But why is there any local transaction? I haven't started any, I just set autoCommit to false
There is always a transaction; Derby won't let you ever access the database without one. What auto-commit does is to automatically commit the transaction after each statement is executed. But any time you issue a statement against the database, if there isn't already a transaction begun, one is started for you. thanks, bryan
