2
我的問題是我的數據讀取器沒有工作。爲什麼我會得到「沒有與此命令關聯的連接」?
這裏是我的代碼:
SQLiteCommand comID = new SQLiteCommand("Select max(id) from haltestellen");
conSQLiteDb.Open();
SQLiteDataReader dr = comID.ExecuteReader(CommandBehavior.CloseConnection);
if (dr.Read())
{
LblHaltestelleID1.Text = dr.GetValue(0).ToString();
}
你嘗試閱讀和理解錯誤? – CodeCaster