Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.1 Beta 2
Mapping documents: Dynamic mapping
Name and version of the database you are using: Oracle 9i
I am looking for some doucmentation on createMappings() method on Configuration object.
I am trying to create hibernate mapping like the following:
<hibernate-mapping package="dataobject">
    <class name="AoM" table="AoM">
        <!--<cache usage="read-only"/>-->
        <!--dynamic-update="true" mutable="true" abstract="false" polymorphism="implicit" dynamic-insert="false" select-before-update="false" optimistic-lock="version">-->
        
        <id
            name="id" column="ID" type="long"
            unsaved-value="0">
            <generator class="assigned"/>
        </id>
        <property name="f1"/>
        <property name="f10"/>
        <property name="f100"/>
...