I'm developing an application that needs to automatically export excel spreadsheets to the database. I'm using MySQL, but the spreadsheet data is not all well formatted the way the bank accepts it.
I have already set as utf8_general_ci
, all tables with utf8
and did not solve. The problem is when I read a number of type 1.478,45
and it can not store in a variable of type double
or float
.
How to proceed?