jdbc rounding value for numeric fields

From: Ioana Danes <ioanasoftware(at)yahoo(dot)ca>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: jdbc rounding value for numeric fields
Date: 2009-05-25 14:59:53
Message-ID: 443343.82078.qm@web45109.mail.sp1.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc


Hi Everyone,

I have a problem with a prepare statement rounding the numeric fields.

I have 2 inserts into a numeric field. The first insert is using an update statement and the second one a prepared statement.
It looks like the prepared statement is doing a rounding on the inserted value....

First insert:
sql.executeUpdate("insert into jdbc_demo values (2.6999999999999997)");
Postgresql log for the first insert:
insert into jdbc_demo values (2.6999999999999997)
The value in the database:
2.6999999999999997

Second Insert:
PreparedStatement ps = db.prepareStatement("insert into jdbc_demo values (?)");
ps.setDouble(1,2.6999999999999997);
ps.executeUpdate();
ps.close();
Postgresql log for the second insert:
insert into jdbc_demo values ($1) parameters: $1 = '2.6999999999999997'
The value in the database:
2.7

Does anyone know why this is happening and if is a jdbc or postgres issue?

Thanks a lot,
Ioana Danes

__________________________________________________________________
Looking for the perfect gift? Give the gift of Flickr!

http://www.flickr.com/gift/

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Tom Lane 2009-05-25 15:15:49 Re: jdbc rounding value for numeric fields
Previous Message Susannah 2009-05-25 12:01:30 Re: Java persistence with enum types