i have sql table of columns id,version,setting_key,setting_value
and i want to change the default_encoding
from LATIN1
to UTF8
for all mcs
(13 or 14 or 15 or .. )
i made this
UPDATE bo_user_setting SET setting_value = 'UTF8' WHERE setting_key = 'DEFAULT_ENCODING';
but it doesn't work .. any help ??
thanks in advance