Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The doc didn't say, but shall I use CF_SQL_MONEY or CF_SQL_MONEY4?

share|improve this question

1 Answer

up vote 1 down vote accepted

The CF8 docs are better. They say use CF_SQL_DECIMAL for

  • smallmoney
  • money
  • decimal

The MS SQL driver also uses DECIMAL for those data types.

Update:
CF9 also represents them differently. DECIMAL definitely seems the better choice for representing currency.

  • CF_SQL_DECIMAL => java.math.BigDecimal
  • CF_SQL_MONEY => java.lang.Double ** approximate type
  • CF_SQL_MONEY4 => java.lang.Double ** approximate type
share|improve this answer
so I guess CF_SQL_DECIMAL would be the safest bet, but CF_SQL_MONEY would work too. – Henry Jul 29 '11 at 4:18
It may not error, but CF_SQL_MONEY is the wrong type in this case (because it maps to java.lang.Double). Approximate numeric types should not be used for representing currency. I am sure that is why the MS docs recommend using DECIMAL. – Leigh Jul 29 '11 at 5:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.