I'm trying to execute insert/update and commit in derby thru eclipselink (JPA). I'm getting the following exception during execution.
java.lang.IllegalArgumentException: Precision exceeds 31 digits!
at org.apache.derby.client.am.Utils.computeBigDecimalPrecision(Unknown Source)
at org.apache.derby.client.net.NetStatementRequest.computeProtocolTypesAndLengths(Unknown Source)
..
..
at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:788)
at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeNoSelect(DatabaseAccessor.java:863)
..
at org.eclipse.persistence.internal.jpa.EJBQueryImpl.executeReadQuery(EJBQueryImpl.java:430)
at org.eclipse.persistence.internal.jpa.EJBQueryImpl.getResultList(EJBQueryImpl.java:714)
at com.rw.util.RWCommonFactory.getCommonCodeSet(RWCommonFactory.java:194)
at com.rw.what.RWTransaction.setProcessedStatusCode(RWTransaction.java:218)
RWCommonFactory.getCommonCodeSet contains
public RWCommonCodeSet getCommonCodeSet(String name, String value){
Query query = manager.createNamedQuery(RWCommonCodeSet.FIND_CODE_NAME_CODE_VALUE);
query.setParameter("codeName", name.trim());
query.setParameter("codeValue", value.trim());
List l = query.getResultList();
if(l.isEmpty()){
return null;
}
else{
return (RWCommonCodeSet) l.get(0);
}
}
RWCommonCodeSet is an entity table that doesn't contain any decimal columns, But getting precision exceeds exception here.
Also in this execution I do persist some other entities that contains DECIMAL(31,5) columns.
I tried enabling Derby log and Eclipse link log but I couldn't get right error from that log.
How can I get actual error location.
Thanks.