1. 程式人生 > >Insert Into 語句的語法錯誤

Insert Into 語句的語法錯誤

img ins height display 數據 play 技術 wid info

錯誤示意:

技術分享圖片

一開始程序是:

技術分享圖片

改正:

一條很簡單的插入語句竟然會報錯,然而直接在數據庫的查詢中執行中卻沒有問題,這個問題困擾了不少時間。

數據庫使用的是ACCESS,INSERT INTO語句為insert into userInfo(user, pwd) values(‘test‘,‘test‘)

一般可能列名發生關鍵字沖突,於是給user, pwd加了[],即insert into userInfo([user], [pwd]) values(‘test‘,‘test‘),就正常了。

Insert Into 語句的語法錯誤