To Shong,
What if I have a column name QUANTITY and has a data type of float.
JasperETL calls QUANTITY in a way like this ((Double)).globalMap.get("row5.QUANTITY")) but this will cause an error. Type mismatch: cannot convert double to float.
If I change (Double) to (Float) I will encounter this message : java.lang.Double cannot be cast to java.lang.Float
What will I do?
Thanks