• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: BigDecimal, scale, and prototypes
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: BigDecimal, scale, and prototypes


  • Subject: Re: BigDecimal, scale, and prototypes
  • From: Mike Schrag <email@hidden>
  • Date: Fri, 15 Aug 2008 14:40:17 -0400

EOF sets the scale when the values are fetched.
case FB_Decimal: {
if (obj instanceof BigDecimal) {
return ((BigDecimal) obj).setScale(eoattribute.scale(), BigDecimal.ROUND_HALF_UP).toString();
}
Sorry, this is actually the inverse operation (when you insert) ...
The fetch variant:

            case 'B':
                BigDecimal bigdecimal = _rs.getBigDecimal(_column);
                return _setScaleUpForAttribute(bigdecimal, _attribute);

    private static BigDecimal _setScaleUpForAttribute(BigDecimal bigdecimal, EOAttribute eoattribute) {
        int i = eoattribute.scale();
        if(bigdecimal != null && bigdecimal.scale() < i) {
            bigdecimal = bigdecimal.setScale(i);
        }
        return bigdecimal;
    }

ms
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

References: 
 >BigDecimal, scale, and prototypes (From: Florijan Stamenkovic <email@hidden>)
 >Re: BigDecimal, scale, and prototypes (From: T Worman <email@hidden>)
 >Re: BigDecimal, scale, and prototypes (From: Florijan Stamenkovic <email@hidden>)
 >Re: BigDecimal, scale, and prototypes (From: Chuck Hill <email@hidden>)
 >Re: BigDecimal, scale, and prototypes (From: Mike Schrag <email@hidden>)
 >Re: BigDecimal, scale, and prototypes (From: Mike Schrag <email@hidden>)

  • Prev by Date: Re: BigDecimal, scale, and prototypes
  • Next by Date: Re: BigDecimal, scale, and prototypes
  • Previous by thread: Re: BigDecimal, scale, and prototypes
  • Next by thread: Re: BigDecimal, scale, and prototypes
  • Index(es):
    • Date
    • Thread