Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Unwanted Rounding

    I have a decimal datatype set to precision 5 and scale 2. When I try to
    insert a new record via ASP using a stored procedure, my numbers are rounded
    with no decimals (e.g., 2.2 becomes 2, 2.6 becomes 3, etc.). How can I make
    sure the values being entered on my web page are inserted as they are
    entered and not rounded? Thank you.


    Jeff Guest

  2. Similar Questions and Discussions

    1. Rounding to nearest 100
      Hi all. I am new to working with formatting numbers. I have a form inputting sales totals into a Microsoft Access database. I need a field for...
    2. Rounding off
      Hello, I need the ability to round off dollar amounts to the nearest 100th of a dollar amount, IE $14.9564 to $14.96 or $132.1123 to $113.11 ...
    3. Rounding Up
      Is there a way to make your numbers always round up. Ex: if the number is 0.0341 it will round to 0.035 Brent
    4. how to keep decimals from rounding
      Is there a way to surpress round() or number_format() from rounding decimal places? I have a value of ".253338" being returned via a calc...
    5. rounding buttons
      I want to round my buttons and once upon a time knew how to decrease or increase my roundness. But now can't seem to find the window that allows me...
  3. #2

    Default Re: Unwanted Rounding

    I have solved this one. I failed to specify the precision and scale in the
    stored procedure. Once I did that, my decimals are being stored as I
    needed.

    "Jeff" <guarna@aol.com> wrote in message
    news:uMidncniUf9ggH_dRVn-gQ@lmi.net...
    > I have a decimal datatype set to precision 5 and scale 2. When I try to
    > insert a new record via ASP using a stored procedure, my numbers are
    rounded
    > with no decimals (e.g., 2.2 becomes 2, 2.6 becomes 3, etc.). How can I
    make
    > sure the values being entered on my web page are inserted as they are
    > entered and not rounded? Thank you.
    >
    >

    Jeff Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139