MySQL Forums
Forum List  »  Newbie

Re: Solution for Unknown OS character set 'ISO-8859-15'
Posted by: Rick James
Date: November 07, 2012 11:11PM

MySQL does not call them by their ISO names.
SHOW COLLATION LIKE 'latin%';
shows latin1, latin2, latin7 in the version I am running.
-15 is perhaps "latin9", which does not seem to be implemented.

My advice -- Use ascii and utf8/utf8mb4, nothing else.

You can have the client encoding different than the column definitions. See SET NAMES and SHOW VARIABLES LIKE 'char%'; However, you would need to pick latin1/2/7, not 9. What specific characters will you need? Maybe one of those will suffice. (utf8 will definitely have all the European characters, including Greek and Cyrillic.)

Options: ReplyQuote


Subject
Written By
Posted
Re: Solution for Unknown OS character set 'ISO-8859-15'
November 07, 2012 11:11PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.