发布网友 发布时间:2022-04-26 23:01
共2个回答
热心网友 时间:2022-06-19 15:52
主要包括表和查询
热心网友 时间:2022-06-19 15:52
语句是:string str = "insert into admain( name,password) values ('" + TextBox1.Text + "','" + TextBox2.Text + "')";将插入数据的SQL语句更改为string str = "insert into admain( [name],[password]) values ('" + TextBox1.Text + "','" + TextBox2.Text + "')";即解决"INSERT INTO 语句的语法错误"的问题.将保留关键字加上中括号([]).在学习中收获分享给大家,以便共同学习。