I am developing a new version of an application that was using an ms-access database because it was becoming too slow.
So I decided to use MySQL as database. i'm happy with my choice.
The problem is that i have a huge database filled with prices. This prices are shown correctly in the old application but in my database it's shown like this: '26,.000000.00'
,'71,9.00000.00'
,'24,9.00000.00'
.
The field is
'price' VARCHAR(255) NOT NULL DEFAULT '0',
I do not know how to fix this. is this because of a data type or because the app was really terrible?