0

私はこのコードを持っていますVB.Netが、エラーが発生しますyou have an error in your sql syntax check the manual that corresponds to your mysql server to use near...

どうすれば修正できますか?

cmd.CommandText = "INSERT INTO isu_mod_alertare (nr_rap_ext_aler, mod, 
forte, procedee, cmd_fuct, nume_cmd) VALUES ('" + nrraport.Text + "', '"
+ MODT.Text + "', '" + fortet.Text + "', '" + procst.Text + "', '" 
+ cdtt.Text + "', '" + numecdt.Text + "')"

cmd.ExecuteNonQuery()
4

1 に答える 1

0

MOD は mysql の予約語なので、「mod」のように mod フィールドに引用符を付けます

ドキュメントを見る

于 2013-06-26T07:57:56.587 に答える