I am trying to insert the values into DB2 Database table where the table has huge number of columns
However 5 columns in specific
Column1 - CHAR - 1 (fieldSize in db)
Column2 - DECIMAL - 11 - 2
Column3 - CHAR - 5
Column4 - CHAR - 60
Column5 - CHAR - 2
I used prepare statement like this
statement.setString(data1); //statement.setInt(0); is not throwing error
statement.setDouble(data2); //Later changed to statement.setBigDecimal according to Oracle Java API
statement.setString(data3);
statement.setString(data4);
statement.setString(data5);
the statement is not throwing any exception for some scenarios like column3 whereas it's throwing NumberFormatException for column1, DataTruncation exception for column4.
I have checked few records column1 has records value ('N') etc... But when i changed it to statement.setInt(0) not throwing error. But it's supposed to store records of value like 'N', 'Y'.
Next problem with column4 where it has CHAR (60) throwing data truncation error. Tried google and went throw many sites. couldn't find any way to avoid or solve the problem
Database is DB2 (very old legacy one, nothing can be done here) JDBC Driver DB2-AS400
Please help me on this.
EDIT: I tried to handle with DataTruncation of java. Data Transferring size: 60 Data Transferred Size: 10 throwing error.
tried to increase and decrease transferring string length. still same.