我运行的代码需要使用以下代码将异常保存到SQL Server数据库中:
public void AcieveSomething()
{
//Datatype Declarations
string ApplicationName = "App_Name";
string ClassName = "Class_Name";
string MethodName = "Achieve Something";
try
{
//Main part of the code
}
catch(Exception ex)
{
//Calling function to input the error into DB
ErrorLog.WriteErrorLog(ex, ApplicationName, ClassName, MethodName);
}
}
如果我要将ex
值放入DB,SQL Server数据库中Exception ex;
的数据类型是什么?
答案 0 :(得分:5)
正如@Liath所说,Exception
继承自System.Object
。从数据库返回的任何错误或警告通常都是SqlException
类型。
一个好的理想是将Exception
对象序列化为XML并将其作为XML存储在数据库中。
要做到这一点,最好创建一个自己的Exception
类型来包含您要存储的信息,如下所示:
[Serializable]
public class StorableException
{
public DateTime TimeStamp { get; set; }
public string Message { get; set; }
public string StackTrace { get; set; }
public StorableException()
{
this.TimeStamp = DateTime.Now;
}
public StorableException(string Message) : this()
{
this.Message = Message;
}
public StorableException(System.Exception ex) : this(ex.Message)
{
this.StackTrace = ex.StackTrace;
}
public override string ToString()
{
return this.Message + this.StackTrace;
}
}
然后你可以这样做:
catch(Exception ex)
{
StorableException s = new StorableException(ex);
//now we can serialize it
XmlSerializer xsSubmit = new XmlSerializer(typeof(StorableException));
StringWriter sww = new StringWriter();
XmlWriter writer = XmlWriter.Create(sww);
xsSubmit.Serialize(writer, s);
var xml = sww.ToString();
//now save the xml file to a column in your database
ErrorLog.WriteErrorLog(ex, ApplicationName, ClassName, MethodName);
}
答案 1 :(得分:3)
Exception是一个继承自System.Object
的类,如果你想将它保存到数据库,你需要决定要存储哪些属性并将它们添加到不同的列(或使用other answer)中的序列化方法。
通常,开发人员使用的属性是Message,StackTrace和InnerException,尽管从Exception派生的其他类型可能还有其他类型。
Message和StackTrace都是字符串,因此nvarchar(或其他文本字段)适合存储它们。由于InnerException是另一个异常(并且可能有它自己的内部异常),最好的方法是在例外表中添加InnerException作为它自己的行。
答案 2 :(得分:0)
将Exception as XML序列化到数据库中时,查询回来会很麻烦。将Exception.InnerException写入nvarchar(max)更方便。