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 回答