I have a code that will gather a number from excel file and store it into DB MySql.
String P01_PickModul = row.getCell(13).getStringCellValue();
The problem is i can not gather the number with more decimal, for example 1.04166666666667
I set the data type on sql as double.
Can you help me with this issue? thank you.