安装有oracle数据库,创建数据库,总是要创建一个主键ID,唯一标示各条记录,但oracle不支持自动编号,所以还得创建一个SEQUENCE(序列)语句如
在hibernate中的映射文件可这么写
或
(increment 用与为long,short或者int类型生成唯一标示。只有在没有其他进程忘同一张表中插入数据时才能使用。在集群下不要使用)
<!---->
create
sequence bign nocycle maxvalue
9999999999
start
with
1
;
//
增加数据
insert into table (ID,..) values (bign.nextval,..)
insert into table (ID,..) values (bign.nextval,..)
在hibernate中的映射文件可这么写
<!---->
<
id
name
="id"
type
="java.lang.Long"
column
="ID"
>
< generator class ="sequence" >
< param name ="sequence" > bign </ param >
</ generator >
</ id >
< generator class ="sequence" >
< param name ="sequence" > bign </ param >
</ generator >
</ id >
或
<!---->
<
id
name
="id"
type
="java.lang.Long"
column
="ID"
>
< generator class ="increment" >
</ id >
< generator class ="increment" >
</ id >
(increment 用与为long,short或者int类型生成唯一标示。只有在没有其他进程忘同一张表中插入数据时才能使用。在集群下不要使用)