Hi all, I have a problem doing the following:
1-get a connection object
2-set its auto commit to false
3-get a PreparedStatement from the Connection object
4-last I call ps.executeUpdate();
I DO NOT call commit() on my Connection object, so I expect the program not to do any insert/updates, but... surprise! it does
my PreparedStatement obj writes to the db...
Can anyone tell me how this can be??
Thanks a lot
[ September 13, 2004: Message edited by: Lukas Alamar ]