我有一个程序将用户项目存储为数据库。当然,程序应该允许用户根据需要创建和删除数据库。程序启动时,它会查找特定SQLServer实例中具有程序所期望结构的所有数据库。然后将这些数据库加载到列表框中,以便用户可以选择一个作为要处理的项目打开。
当我尝试从程序中删除数据库时,我总是收到一条SQL错误,指出数据库当前已打开且操作失败。我已经确定检查要加载的数据库的代码是导致问题的原因。我不确定为什么,因为我很确定所有连接都已正确关闭。
以下是所有相关功能。在调用BuildProjectList之后,从ExecuteSQL运行“DROP DATABASE database_name”失败并显示消息:“无法删除数据库,因为它当前正在使用”。我正在使用SQLServer 2005。
private SqlConnection databaseConnection;
private string connectionString;
private ArrayList databases;
public ArrayList BuildProjectList()
{
//databases is an ArrayList of all the databases in an instance
if (databases.Count <= 0)
{
return null;
}
ArrayList databaseNames = new ArrayList();
for (int i = 0; i < databases.Count; i++)
{
string db = databases[i].ToString();
connectionString = "Server=localhost\\SQLExpress;Trusted_Connection=True;Database=" + db + ";";
//Check if the database has the table required for the project
string sql = "select * from TableExpectedToExist";
if (ExecuteSQL(sql)) {
databaseNames.Add(db);
}
}
return databaseNames;
}
private bool ExecuteSQL(string sql)
{
bool success = false;
openConnection();
SqlCommand cmd = new SqlCommand(sql, databaseConnection);
try
{
cmd.ExecuteNonQuery();
success = true;
}
catch (SqlException ae)
{
MessageBox.Show(ae.Message.ToString());
}
closeConnection();
return success;
}
public void openConnection()
{
databaseConnection = new SqlConnection(connectionString);
try
{
databaseConnection.Open();
}
catch(Exception e)
{
MessageBox.Show(e.ToString(), "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
public void closeConnection()
{
if (databaseConnection != null)
{
try
{
databaseConnection.Close();
}
catch (Exception e)
{
MessageBox.Show(e.ToString(), "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
答案 0 :(得分:2)
两条评论。首先,你应该使用using语句,你的能力会更加清晰。
有关主题的更多信息,当您尝试删除数据库时,您将连接到数据库!改为连接到主数据库。
答案 1 :(得分:2)
SqlConnection
类轮询实际的数据库连接。如果关闭SqlConnection
,则连接将返回到连接池。要防止出现此行为,请设置SqlConnection.Pooling = false;
。
修改强>
约翰似乎更重要。但你也可能必须记住民意调查。