主题:[求助]帮我看看我的 插入语句语法错在哪里 看了N小时了
CommandStr = "Insert into user (username,usersm,password,usergroup) values('"
CommandStr = CommandStr & TextBox1.Text & "','" & TextBox2.Text & "','" & TextBox3.Text & "'," & TextBox4.Text & ")"
第四个字段是数字,其他是字符
我运行后生成的实际语句是
Insert into user (username,usersm,password,usergroup) values('u','u','u',5)
看看没有错啊,语法哪里错啊
CommandStr = CommandStr & TextBox1.Text & "','" & TextBox2.Text & "','" & TextBox3.Text & "'," & TextBox4.Text & ")"
第四个字段是数字,其他是字符
我运行后生成的实际语句是
Insert into user (username,usersm,password,usergroup) values('u','u','u',5)
看看没有错啊,语法哪里错啊