我有一段代码,它遍历一系列SQL命令,这些命令应作为一个事务的一部分进行处理。我想知道该事务是否成功用于错误记录和处理目的。此时由于某种原因我遇到任何类型的实际异常或不成功提交时出现问题。我现在正在使用下面的代码。 try catch来自MSDN页面推荐。请随意戳出任何其他漏洞,你可以看到这不是100%关于我的问题。这些是存储过程类型的SqlCommands的所有命令,在将它添加到SQL命令列表之前添加了参数。
public static async Task UpdateSQL(string inputQuery,
string inputId, List<SqlCommand> commandList, TraceWriter log)
{
try
{
string str = ConfigurationManager.ConnectionStrings
["connString"].ConnectionString;
log.Info($"Running query: {inputQuery}");
int commandRows = 0;
using (SqlConnection conn = new SqlConnection(str))
{
conn.Open();
SqlTransaction tr = conn.BeginTransaction();
try
{
SqlCommand cmd = new SqlCommand(inputQuery, conn);
cmd.Transaction = tr;
foreach (var command in commandList)
{
command.Connection = conn;
command.Transaction = tr;
log.Info($"{command.CommandText} query running"); //last log output if unsuccesful (based on end result in database)
commandRows += await command.ExecuteNonQueryAsync();
}
log.Info($"total rows updated: {commandRows}");
tr.Commit();
conn.Close();
}
catch(Exception ex)
{
Console.WriteLine($"Commit Exception Type: {ex.GetType()}");
Console.WriteLine($" Message: {ex.Message}");
try
{
tr.Rollback();
conn.Close();
log.Info($"{inputId} transaction rolled back");
}
catch (Exception ex2)
{
// rollback fail Exception
log.Info($"Rollback Exception Type: {ex2.GetType()}");
log.Info($" Message: {ex2.Message}");
conn.Close();
}
}
}
}
答案 0 :(得分:0)
尝试并捕获SqlException
然后这样做:
StringBuilder sqlErrorMessages = new StringBuilder(“Sql Exception:\ n”);
foreach (SqlError error in ex.Errors)
{
sqlErrorMessages.AppendFormat("Mesage: {0}\n", error.Message)
.AppendFormat("Severity level: {0}\n", error.Class)
.AppendFormat("State: {0}\n", error.State)
.AppendFormat("Number: {0}\n", error.Number)
.AppendFormat("Procedure: {0}\n", error.Procedure)
.AppendFormat("Source: {0}\n", error.Source)
.AppendFormat("LineNumber: {0}\n", error.LineNumber)
.AppendFormat("Server: {0}\n", error.Server)
.AppendLine(new string('-',error.Message.Length+7));
}
如果您的错误严重性为16或更高,您将只在C#中获得异常。如果您使用的是PRINT,则不会在.NET中出现异常。
如果您可以编辑raise错误代码,这将导致C#中的SqlException:
RAISERROR('一些错误信息',16,1) 然后,您可以获取SqlException.Errors集合中的每个错误。
只是旁注 - 如果之后没有直接返回,SQL Server将继续在RAISERROR之后运行命令。如果您不返回,则可能会收到多个错误。