The database returned no natively generated identity value 错误的解决(转载) _JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > The database returned no natively generated identity value 错误的解决(转载)

The database returned no natively generated identity value 错误的解决(转载)

 2011/12/27 9:07:42  huangyunbin  http://huangyunbin.iteye.com  我要评论(0)
  • 摘要:配置文件<idname="id"column="id"><generatorclass="native"/></id>然后我运行保存一条数据进去Thedatabasereturnednonativelygeneratedidentityvalue就会报这个错误因为你native是根据看底层数据库的能力选择identity
  • 标签:解决 ide database ASE 错误
配置文件
    <id name="id" column="id">
            <generator class="native" />
        </id>
然后我运行保存一条数据进去
The database returned no natively generated identity value
就会报这个错误
因为你native是根据看底层数据库的能力选择identity, sequence 或者hilo中的一个

而我建表的时候id没有指定

alter table `student` change `id` `id` int auto_increment

我们把我们的表的结构小小的改动一下就没问题了
发表评论
用户名: 匿名