
I'm currently tinkering with some new content fields for my plugins. One of them contains a PID which is a DWORD (32 bit unsigned). Since I figured that ft_numeric_32 (32 bit signed) would potentially be too small, I chose ft_numeric_64 (64 bit signed). The problem is that TC automatically adds thousands separators to the numbers, which is unnecessary and unwanted in this case.
Questions:
- Is this intentionally done by TC? Yes, I read the WFX help and saw that ft_numeric_64 could be used for example for file sizes.
- Is there a way to prevent it?
- Which data type should I choose? ft_numeric_32 which is potentially too small, or ft_numeric_64 which adds the inept thousands separator?
- BTW: Why is there no unsigned numeric type?
Dalai