Community
Participate
Working Groups
Use a "decimal(6,2)" in MVC, and enter "1234.5678". The model should store value "1234.56" not "1234.5678", just like you would get if you coded the statement: d decimal(6,2) = "1234.5678";
Fixed MVCTemplate.java. For all types except timestamp, we now pass in getType() when creating the AS expression for the commit helper, instead of getType().getClassifier(). Timestamp needs to use getClassifier() to match what's expected by InternalTimestampFormatter.unformat()
Verified.