I'm using Microsoft SQL Server, but this is a general question about calling stored procs via
JDBC.
I want to manage transactions within my stored proc (i.e. by placing BEGIN TRAN and COMMIT TRAN around relevant pieces). But whenever I call a stored proc through JDBC it always seems to be wrapped in a transaction - either implicitly with the 'auto-commit' setting turned on, or explicitly using commit().
Is there some way I can call SQL without having it wrapped in a transaction?
David