我試圖插入一些信息到MySQL與帕斯卡爾,但是當我運行程序出現錯誤未知列
在字段列表中未知列「穆赫辛」
這是我的代碼
procedure TForm1.Button1Click(Sender: TObject);
var
aSQLText: string;
aSQLCommand: string;
namee:string;
family:string;
begin
namee:='mohsen';
family:='dolatshah';
aSQLText:= 'INSERT INTO b_tbl(Name,Family) VALUES (%s,%s)';
aSQLCommand := Format(aSQLText, [namee, family]);
SQLConnector1.ExecuteDirect(aSQLCommand);
SQLTransaction1.Commit;
end;
我該如何解決這個問題?
我tryed但我doesent工作 –
定義「不工作」。你會得到什麼錯誤信息?順便說一句,你q中的代碼看起來是假的(例如'field'拼寫錯誤),請不要這樣做,它會浪費每個人的時間 - 將你的確切代碼和錯誤信息粘貼到你的q中。 – MartynA
eror是同一個eror我問 它試圖改變 –