Hi,
What is the best way to determine if a number column is a float or a decimal programically ?, do I just get the length eg. Float = 12 etc.
Hi,
What is the best way to determine if a number column is a float or a decimal programically ?, do I just get the length eg. Float = 12 etc.
JSColumn.getType() will give you the data that it is an integer (JSColumn.INTEGER) or a float ‘kind’ (JSColumn.NUMBER)
But if you want to see the differences within the NUMBER once you have to just program that out by looking that combinations of Length and Scale.