string tianjia1 = "insert into list(学号,姓名,专业,性别,民族,导师) values('" + textBox13 + "','" + textBox14 + "','" + textBox15 + "','" + textBox16 + "','" + textBox17 + "','" + textBox18 + "',)";
最后一个括号左边那个逗号是多余的
string tianjia1 = "insert into list(学号,姓名,专业,性别,民族,导师) values('" + textBox13 + "','" + textBox14 + "','" + textBox15 + "','" + textBox16 + "','" + textBox17 + "','" + textBox18 + "')";
提示已经很明确了呀~~你的整型字段没有给到值,提示出错,如:
studentnum = '" + textBox2.Text + "'";
建议跟踪一下语句!
updata 改为update,然后再打断点跟一下这个SQL语句,在放到数据库中执行一下,以后遇到类似的问题都可以这么做,试试吧。
调试.看下cmdText这个变量是什么值,复制出来在查询分析器里面执行一下.
string cmdText = "updata student set name ='"中的update