我收到一條錯誤,指出「指定的演員表無效」。我不知道該做什麼,只是稍微有點不行。指定的演員表無效錯誤
List<string> productCode = new List<string>();
List<string> productName = new List<string>();
List<int> quantity = new List<int>();
List<double> totalPrice = new List<double>();
List<double> totalTax = new List<double>();
int orderID = 0;
SqlCeCommand com2 = new SqlCeCommand("SELECT TotalPrice, TotalTax FROM Order_Details WHERE OrderID = ('" + orderID + "')", con);
SqlCeDataReader dr2 = com1.ExecuteReader();
while (dr2.Read())
{
totalPrice.Add(dr2.GetDouble(0));
totalTax.Add((double)dr2[1]);
j++;
}
嗎? – Gusdor
確實發生什麼線錯誤請不要在標題中使用的標籤,但標籤正確的問題:http://meta.stackexchange.com/questions/19190/should-questions-include-tags-in-their-titles – bump
什麼是你的柱子的類型NS? –