08
2012
04

C# SqlException数据库引用异常

当 SQL Server 返回警告或错误时引发的异常
try
{
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter(str, mycon());
da.Fill(ds);
return ds;
}
catch (SqlException ex)
{
MessageBox.Show(ex.ToString());
return null;
}
«1»