Hi All,
I'm experiencing a strange problem with hibernate when inserting huge data. I have mappings for 3 properties in hbm file as:
Code:
<property name="priceIntro" type="text" column="PRICE_INTRODUCTION" />
<property name="priceDesc" type="text" column="PRICE_DESC" />
<property name="priceNote" type="text" column="PRICE_NOTE" />
I'm connecting to Oracle db and all these 3 fields are of CLOB data type. When saving the object with small data for these fields, hibernate saves it properly. But when i enter large data (eg: 25,000 charactors per field), hibernate swaps the fields when saving the data... So i price introduction and price note values are swapped when saving. This doesnt happen for small data. I dont have any clue on why this is happening... Do i need to do any configuration when saving big data through hibernate?? Please share your ideas on this matter......
Thanks in advance.