我想執行這個語句來插入一些數據到數據庫。插入值到SQL數據庫
com = new SqlCeCommand("INSERT INTO [cars table]"
+ "([Car reg no],[MOT expiry date], Mileage,[Other information])"
+ "VALUES (" + m._INSERTCarRegNo + "," + m._INSERTExpiryDate + ","
+ m._INSERTMileage + "," + m._INSERTotherInformation
+ ")",this.returnConnection);
以上是我的聲明,但我得到一個錯誤,但錯誤是無法解析字符串。誰能幫我嗎?
謝謝
您可能想要考慮防範SQL注入。 =) – 2012-07-19 09:01:25
您可能也想查找參數化查詢。您的代碼目前是一個錯誤和一個潛在的安全威脅。 – 2012-07-19 09:03:37
@TonyHopkinson我懶洋洋地在「bug fest」 – 2012-07-19 11:25:59