是否有可能捕获内部异常:
try
{
ttsbegin;
info("step one");
try
{
info("step two");
throw Error("error");
}
catch
{
info("catch step two");
}
ttscommit;
}
catch
{
info("catch step one");
ttsabort;
}
我知道我可以评论 ttsbegin;/ttscommit,但我需要有一个事务。