我有2个查询,但在更新cmd2.ExecuteNonQuery();
时会抛出异常"数据库被锁定":
if (txt_balance.Text != "")
{
using ( SQLiteConnection con = new SQLiteConnection(obj.getDbSourceFile))
{
con.Open();
SQLiteCommand cmd1 = new SQLiteCommand("SELECT [supplier_balance] FROM [s_supplier] where supplier_name='" + comboPurchaseSupplier.Text + "'", con);
SQLiteDataReader DR = cmd1.ExecuteReader();
// hfcconn.Close();
if (DR.HasRows)
{
if (DR.Read())
{
//hfcconn.Open();
using (SQLiteConnection con2 = new SQLiteConnection(obj.getDbSourceFile))
{
SQLiteCommand cmd2 = new SQLiteCommand("update [s_supplier] set supplier_balance=" + (DR.GetInt32(0) + Convert.ToInt32(txt_balance.Text)) + " where supplier_name='" + comboPurchaseSupplier.Text + "'", con2);
con2.Open();
cmd2.ExecuteNonQuery();
DR.Dispose();
// con.Close();
}
}
}
// con.Close();
}
}
答案 0 :(得分:1)
问题是您使用的是两个连接。
Connections(及其事务)彼此隔离,因此第二个连接无法更新第一个连接仍具有打开的阅读器的表。