BF [3010957] - Custom Separator Character

https://sourceforge.net/tracker/index.php?func=detail&aid=3010957&group_id=176962&atid=879335
This commit is contained in:
trifonnt 2010-06-18 06:01:47 +00:00
parent 34249806d1
commit 17469aca58
1 changed files with 3 additions and 1 deletions

View File

@ -277,7 +277,9 @@ public final class ImpFormat
{
retValue = new ImpFormat (name, rs.getInt("AD_Table_ID"), rs.getString("FormatType"));
ID = rs.getInt ("AD_ImpFormat_ID");
retValue.setSeparatorChar(rs.getString(I_AD_ImpFormat.COLUMNNAME_SeparatorChar));
if (X_AD_ImpFormat.FORMATTYPE_CustomSeparatorChar.equals(rs.getString(I_AD_ImpFormat.COLUMNNAME_FormatType))) {
retValue.setSeparatorChar(rs.getString(I_AD_ImpFormat.COLUMNNAME_SeparatorChar));
}
}
rs.close();
pstmt.close();