Usually it's one of 2: - check your table definition in Oracle whether the column you insert to can contain a decimal part. Try to insert a decimal value via SQL*Plus e.g. ... if that doesn't work that's the error.
- Maybe you're using Integers to pass parameters to iBATIS which would cut your decimal part, but that would require some more information from you: maps, pieces of java code. Regards, Sven On Wed, 24 Aug 2005 15:19:20 -0300, you wrote: >I´m trying to insert some decimal values in a table at oracle >database. But the decimal part of the value is not recorded. > >Like if try to record 325.34 the value that is recorded is 325 only >the integer part. How can i solve this problem? > > >tks
