2015-12-03 71 views
0

我在VB.NET中創建銷售點應用程序,我想更新數據庫中的數據,但是當我嘗試獲取表達式預期錯誤。爲什麼我得到VB 2010「表達預期」錯誤?

PS:我使用的是visual studio 2010專業版和操作系統的windows 10.如果需要更多解釋,請在評論中提及。

代碼:

ProductTableAdapter.UpdateProduct('ProductNameTextBox.Text','QuantityTextBox.Text','SellingPriceTextBox.Text', 'IDTextBox.Text') 

集查詢配置:

UPDATE `product` SET `ProductName` = ?, `Quantity` = ?, `SellingPrice` = ? WHERE ((`ID` = ?) 

回答

1

刪除周圍where子句括號:

UPDATE `product` SET `ProductName` = ?, `Quantity` = ?, `SellingPrice` = ? WHERE `ID` = ? 
+1

你救了我3個小時,它是完美的! –

+0

沒問題。歡呼1! –

相關問題