Fix Bug [ 1663167 ] MColumn.getSQLDataType: Unhandled Data Type = 28

This commit is contained in:
Carlos Ruiz 2007-04-22 08:11:33 +00:00
parent 71465255d4
commit 7f0089a12e
1 changed files with 2 additions and 0 deletions

View File

@ -412,6 +412,8 @@ public class MColumn extends X_AD_Column
return "CHAR(1)";
if (dt == DisplayType.List)
return "NVARCHAR2(" + getFieldLength() + ")";
if (dt == DisplayType.Button)
return "CHAR(" + getFieldLength() + ")";
else if (!DisplayType.isText(dt))
log.severe("Unhandled Data Type = " + dt);