Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3961658
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:00:05+00:00 2026-05-20T03:00:05+00:00

I defined a decimal field with a scale / significant digits of 4 in

  • 0

I defined a decimal field with a scale / significant digits of 4 in mysql (ex. 10.0001 ). ActiveRecord returns it as a BigDecimal.

I can set the field in ActiveRecord with a scale of 5 (ex. 10.00001 ), and save it, which effectively truncates the value (it’s stored as 10.0000).

Is there a way to prevent this? I already looked at the BigDecimal class if there is a way to force scale. Couldn’t find one. I can calculate the scale of a BigDecimal and return a validation error, but I wonder if there is a nicer way to enforce it.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T03:00:06+00:00Added an answer on May 20, 2026 at 3:00 am

    You could add a before_save handler for your class and include logic to round at your preference, for example:

    class MyRecord < ActiveRecord::Base
      SCALE = 4
      before_save :round_decimal_field
      def round_decimal_field
        self.decimal_field.round(SCALE, BigDecimal::ROUND_UP)
      end
    end
    r = MyRecord.new(:decimal_field => 10.00009)
    r.save!
    r.decimal_field # => 10.0001
    

    The scale factor might even be assignable automatically by reading the schema somehow.

    See the ROUND_* constant names in the Ruby BigDecimal class documentation for other rounding modes.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a database field defined as decimal(9,9). The edmx model in C# maps
I have an issue to try to use a field defined as a decimal(17)
I was told that decimal is implemented as user defined type and other c#
I have defined a column in SQL to be decimal(4,1), null which means I
I have a model with a decimal field. The output of: def special_method(self): return
I'm trying to use number_to_currency to get two digits after the decimal dot in
I have a decimal column in a table defined as decimal(8,3). I would like
I have a database with an amount field - it's a decimal, although the
I would like to set up a function to automatically insert pre-defined shifts into
I have a field that I usualy set as rate = models.DecimalField( max_digits=2, decimal_places=1,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.