在我的应用程序中,我需要向用户显示错误发生的确切位置。喜欢在哪个表和列中。我有InnerException
,如下所述。
由此,我需要提取表名和列名。 有没有简单的方法来提取它们?我知道我们可以使用正则表达式来完成它,但我不知道该怎么做。表名和列名可以根据错误动态更改。
System.Data.SqlClient.SqlException:INSERT语句与FOREIGN KEY约束冲突" FK_state_name"。冲突发生在数据库" StateDB",table" dbo.State",column' State_Name'。
答案 0 :(得分:1)
您应该处理错误Number
属性,它本身有很多信息,并且基于此可以使用SqlException的其他属性:
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlexception%28v=vs.110%29.aspx
PS。例外是不同的,我怀疑有那些单一的消息模式。它可能是约束违规,可能是插入的值不正确,缺少插入所需的列,我不会指望消息。
StringBuilder errorMessages = new StringBuilder();
catch (SqlException ex)
{
for (int i = 0; i < ex.Errors.Count; i++)
{
errorMessages.Append("Index #" + i + "\n" +
"Message: " + ex.Errors[i].Message + "\n" +
"LineNumber: " + ex.Errors[i].LineNumber + "\n" +
"Source: " + ex.Errors[i].Source + "\n" +
"Procedure: " + ex.Errors[i].Procedure + "\n");
}
}
答案 1 :(得分:0)
是的,您可以使用以下正则表达式:
String error = "System.Data.SqlClient.SqlException: The INSERT statement conflicted with the FOREIGN KEY constraint \"FK_state_name\". The conflict occurred in database \"StateDB\", table \"dbo.State\", column 'State_Name'";
Regex rt = new Regex("table \"([^\"]*)\"");
Match m = rt.Match(error);
string table = m.Groups[1].Value;
Regex rc = new Regex("column '([^']*)'");
m = rc.Match(error);
string column = m.Groups[1].Value;
或完整程序(您可以执行here):
using System;
using System.Text.RegularExpressions;
class Program {
static void Main() {
string error = "System.Data.SqlClient.SqlException: The INSERT statement conflicted with the FOREIGN KEY constraint \"FK_state_name\". The conflict occurred in database \"StateDB\", table \"dbo.State\", column 'State_Name'";
Regex rt = new Regex("table \"([^\"]*)\"");
Match m = rt.Match(error);
string table = m.Groups[1].Value;
Regex rc = new Regex("column '([^']*)'");
m = rc.Match(error);
string column = m.Groups[1].Value;
Console.WriteLine("table {0} column {1}",table,column);
}
}
虽然这是一个应用程序,但有些建议:不要向用户显示此类消息。他们不知道数据库是什么,黑客会发现更容易提取有价值的信息。您最好显示一条消息,例如&#34;出现问题,请稍后再试。&#34;