问题
How can I set XACT_ABORT to ON (or OFF) from within ADO.NET ?
回答1:
Execute SET XACT_ABORT ON
or SET XACT_ABORT OFF
.
回答2:
There is no client setting: in SQL As Remus said.
SET XACT_ABORT is not a property of the connection, command or transaction and can be set/unset at any time in SQL Code. There is no ado.net options for SET NOCOUNT ON etc.
来源:https://stackoverflow.com/questions/2277254/how-to-set-xact-abort-within-ado-net