Hi all.
my
servlet uses a datasource in order to get a connection to the database.
some code :
my question is can I do the following (inside the servlet) :
con.setAutoCommit(false);
// use multiple SQL insert & update
con.commit( );
I'm not sure if we can do this in a servlet...
any ideas ??