-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: How to get the next value in Oracle Sequence
PostPosted: Wed Sep 17, 2003 9:09 pm 
Newbie

Joined: Wed Sep 17, 2003 9:02 pm
Posts: 13
Hi. Could you please tell me how to get the next value of an Oracle sequence.

I need the next value to do some processing before inserting. Normally, I would do "select sequence_name from dual" in Oracle. Do I need to define the "dual" table in Hibernate mapping?

If there is an easier way to get the next value of sequence without defining mapping for "dual", it will be great.

Your help is appreciated.

Regards,
KK


Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 17, 2003 9:17 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 3:00 pm
Posts: 1816
Location: Austin, TX
How about :

Code:
RsultSet results = session.getConnection().createStatement().executeQuery("select nextval from dual");
...


You would then need to NOT use the sequence id generation strategy, but assign the value you just retreived.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.