I used MySQL function DATE_FORMAT(table.field, '%d %b %Y')
, where the first parameter is my column, and the second is a pattern to format the column according to a date logic.
The output of this function is in english :
10 Feb 2014
And I would like to set the locale language to fr_FR which would output this correct string :
10 Fév 2014
Question : How to change locale language of the DataBase right before the query (in order to change it according to another language) ?