up vote 1 down vote favorite
share [g+] share [fb]

I am getting this Error on Insert statement to AS400 database, using Java with JDBC.

link|improve this question
feedback

1 Answer

I figured it out, I had a numeric field with length 4 and decimal digits 2, In my insert I was trying to insert 100 in this numeric field which gave this error.

I altered the table and made it numeric with length 9 and decimal digits 2 
and the insert worked.

even though the error says "Conversion error", actually its the wrong field length.

link|improve this answer
Makes sense. It was trying to convert a 3,0 value to a 4,2 value when it failed. – Tracy Probst Sep 11 '09 at 14:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.