0

.NET 中是否存在用于DatabaseNotFound的“内置”异常,我可以将其用于连接到数据库服务器以执行维护任务的程序?

我觉得应该有,但我一直找不到。在下面的代码中,您会看到我检查了(在 app.config 中定义)数据库的存在。

XML 文件:

<DatabaseConnection source="myLaptop" username="user" password="pass" defaultDatabase="DB1">
    <database companyIdentTable="tableA" companyIdentField="fieldA">Database_A</database>
    <database companyIdentTable="tableB" companyIdentField="fieldB">Database_B</database>
</DatabaseConnection>

C#代码:

for (int i = 0; i < appSettings.DatabaseConnection.database.Length; i++)
{
    string database = builder.QuoteIdentifier(appSettings.DatabaseConnection.database[i].Value); //Security measure
    command = new SqlCommand("SELECT COUNT(1) FROM master.dbo.sysdatabases WHERE name='" + database + "'", conn);
    if ((int)command.ExecuteScalar() <= 0)
    {
        Log("Database '" + appSettings.DatabaseConnection.database[i].Value + "' was not found. Service shutting down.", true);
        //TODO - throw a more specific exception!
        throw new Exception("Database '" + appSettings.DatabaseConnection.database[i].Value + "' was not found. Service shutting down.");
    }
}
4

2 回答 2

2

最接近的比赛将是

  • System.Configuration.ConfigurationErrorsException
  • System.Data.DataException

由于您的情况更可能是配置错误(指定的数据库名称无效)而不是数据库错误(数据库未成功创建),第一个选项会更好。

如果您想要一个特定的异常,您应该从其中之一派生并创建您自己的自定义异常类。

于 2013-04-25T07:49:32.943 回答
1

由于您使用的是SqlCommand我会使用System.Data.SqlClient.SqlException因为这是SqlCommand会抛出的。

于 2013-04-25T08:02:59.840 回答