Problem in Inputing/Updating float value in SQL Server
843859Jan 7 2006 — edited Jan 10 2006I'm trying to update float values in SQL Server2000 using PreparedStatement with setFloat(colNo, floatValue) method.
The floatValue was 1.1 as I typed it in and printed out (System.out.print) but that value will be 1,10000002384186 inside the database.
That column in SQLServer is typed float
Please help..
What've I done wrong
David