MySQL Forums
Forum List  »  Newbie

Re: Can't read in Greek characters
Posted by: Peter Brawley
Date: December 27, 2016 06:40PM

I've little experience with Greek, you can send info to pb AT artfulsoftware.com but you might do better with someone who's worked with Greek text in MySQL.

But I'm curious. Does this little (updated) script reproduce what you are seeing?

set names latin1;
set @greeklatin1 = 'Γειά σου';
set names utf8;
set @greekutf8 = 'Γειά σου';
select @greeklatin1, @greekutf8;
set names latin1 ;
select @greeklatin1, @greekutf8;



Edited 1 time(s). Last edit at 12/27/2016 06:49PM by Peter Brawley.

Options: ReplyQuote


Subject
Written By
Posted
December 26, 2016 11:24AM
Re: Can't read in Greek characters
December 27, 2016 06:40PM


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.