|
Category :
Client
Applications
DB Version
:
Oracle 8i / 9i
OS Details :
Sun Solaris9
By
default the JDBC driver commits all INSERTs and UPDATEs as soon as you
execute the statement. This is known as autoCommit mode in JDBC. You
can get better performance by turning autoCommit off and using
explicit commit statements. Use the setAutoCommit entrypoint of the
Connection class to turn off autoCommit:
connection.setAutoCommit(false);
|