I am querying a mysql database and retrieving float information. As specify in "Data Types for Qt-supported Database Systems" my floats get mapped to strings.
My problem is that the string format is the French one (my system is in French) and I want it in English
QVariant(QString, "395,134") et no QVariant(QString, "395.134")
I tried to change the locale in the main class before launching the main gui thread without result. The default locale is from there on correctly set to en_US but this has no effect on the data retrieved from the database.
Any help on how to achieve this would be greatly appreciated.
Lynn
Bookmarks