Hi All,
In the midst migration the WL Server from 9.2 to 10.3.2.
We had no issues with Hibernate in 9.2 (Oracle 10g) but encountered the below issue after migrated to 10.3.2 (Oracle 10g)
SQL Fired by Hibernate ---------------------- DEBUG org.hibernate.util.JDBCExceptionReporter - could n ot execute query [select abc0_.CTRY_CD as CTRY1_76_, abc0_.REC_STATUS as REC_STATUS2_76 from ABC abc0_ where (id.ctryCd=? )AND(id.cmpntId=? )AND(id.userRole=? )AND(recStatus=? )]
hbm xml -------- <property name="recStatus" type="string" unique="false" optimistic-lock="true" lazy="false" generated="never"> <column name="REC_STATUS" length="10" not-null="true" /> </property>
Any idea why SQL fired by hibernate is not translated to REC_STATUS?
Thanks!!
|