Login  Register

Small bug in Entity Engine

Posted by Hans Holmlund on Sep 13, 2006; 9:13am
URL: http://ofbiz.116.s1.nabble.com/Small-bug-in-Entity-Engine-tp141811.html

There is a small bug in Entity Engine DatabaseUtil. When the metadata is
fetched from the database all column names are converted to capital
letters (DatabaseUtil.java row 1047). But when the entities is checked
if they have a corresponding table (and column) the column names are not
converted to uppercase. Therefore row 206 should look like:
                       
fieldColNames.put(field.getColName().toUpperCase(), field);

/ Hans H