我收到错误,这里有什么问题?
SqlCeCommand com5 = new SqlCeCommand("SELECT MAX(OrderID) AS Expr1 FROM Order_Details)", con);
SqlCeDataReader dr5 = com5.ExecuteReader(); // Catches Ex here
while (dr5.Read())
{
orderID = Convert.ToInt32(dr[0]);
}
我正在SQLCe
使用VS2012
, WPF
, C#
。
例外是
$exception {"解析查询时出错。[标记行号 = 1,标记行偏移量 = 62,错误标记 = )]"} System.Exception {System.Data.SqlServerCe.SqlCeException}`
查询正确,但这些查询没有更新我的数据库,你能查一下吗?
SqlCeCommand com3 = new SqlCeCommand("INSERT INTO Order_Details(Discount, TotalPrice, TotalTax) VALUES(@Discount, @TotalPrice, @TotalTax)", con);
com3.Parameters.AddWithValue("@Discount", discount);
com3.Parameters.AddWithValue("@TotalPrice", gTotal);
com3.Parameters.AddWithValue("@TotalTax", totalIndividualTax);