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 8225569
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T15:27:30+00:00 2026-06-07T15:27:30+00:00

Is there anyway to prevent Java from turning my double into exponential value? I

  • 0

Is there anyway to prevent Java from turning my double into exponential value? I am having problem with saving that into my database. It keep telling me that it can not convert my VarChar into numeric.

I do;

amt = oldAmt - amt;
amt = Math.abs(amt);

And put the value in amt like so using setter;

jvd.setDr_amt(amt);

Then generate a query string using a function and it give me;

INSERT INTO jv ( id, dr_amt) VALUES (1, 1.595545786E7);

The datatype in the database for dr_amt is numeric(15, 2)

Anyone?

  • 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-06-07T15:27:31+00:00Added an answer on June 7, 2026 at 3:27 pm

    I’m very much guessing that you do something like this:

    connection.createStatement().executeUpdate(
      "INSERT INTO my_table VALUES('" + myDouble + "')");
    

    Don’t do that for the following reasons:

    • Concatenating strings will cause syntax errors
    • Concatenating strings will cause SQL injection

    Write your statement in a way to let JDBC handle data types:

    PreparedStatement stmt = connection.prepareStatement(
      "INSERT INTO my_table VALUES(?)");
    stmt.setDouble(1, myDouble);
    stmt.executeUpdate();
    

    If you absolutely must inline your double value in your SQL string instead of using bind values, try using BigDecimal to serialise your double, instead:

    new BigDecimal(myDouble).toString();
    

    Since you seem to be operating on monetary values, you should change all your doubles to BigDecimal anyway, as BigDecimal is Java’s best match for SQL’s DECIMAL data type

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

Sidebar

Related Questions

Is there anyway to restrict by using pre-processing directives to prevent a project from
Is there anyway to prevent onbeforeunload from being called when clicking on mailto link
Is there any way of using Java or C++ to prevent all applications from
Is there anyway to prevent var_dump from printing private vars in a class? I
am having problem in Saving some data in my Java code. I have like
Is there any way to hide or encrypt JavaScript code to prevent people from
Is there anyway or any addin for VS2010 that can remove all the comments
Is there anyway to create an ObjectSet from a DbSet ? Some background information:
Is there anyway to open the twitter app from an html link on an
I have imported an Existing Java Application into my Workspace . I see that

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.