I have this mapping in my code:
News.hbm.xml:
<class name="xyz.News" table="XYZ_NEWS">
<id name="id" column="NEWS_ID">
<generator class="native"/>
</id>
rest of mapping
</class>
I am using Oracle database. Hibernate documentation tells me:
native - selects identity, sequence or hilo depending upon the capabilities of the underlying database
What does that mean for Oracle?
Edit: I know now it uses sequences. The name of the sequence is what i am interested in.