auto commit - maybe simple
Hi All,
I had this proble in JDev903
after I get a connection fron data source, I explicitly set autocommit to false using
conn = getConnection();
conn.setAutoCommit(false)
... do my stuff ...
... no commit called
... conn.close(); conn = null;
... reutrn from the method
However, all the changes still committed into the database.
anything wrong?
thanks for the help!