本文主要是介绍An explicit value for the identity column in table 'users' can only be specified when a column list,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
eclipse中tomcat console提示如下:
An explicit value for the identity column in table 'users' can only be specified when a column list is used and IDENTITY_INSERT is ON.
users中的字段有:userid,username,passwd,grade
原始:
String sqlUpdate="insert into users values (null,?,?,?)";
数据库为sqlserver2008R2
由于users中的userid设置为自动增长,所以不需要在插入时设置该值,修改为:
String sqlUpdate="insert into users values (?,?,?)";
这篇关于An explicit value for the identity column in table 'users' can only be specified when a column list的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!