Re: Multilanguages site and utf8 strings with PHP
Posted by: Leandro Luccerini
Date: January 19, 2006 10:29AM

Ok, i've found that the problem was the default-character-set of the server that was "latin1".

The result of SHOW VARIABLES

character_set_client utf8
character_set_connection utf8
character_set_database utf8
character_set_results utf8
character_set_server latin1
character_set_system utf8

Becomes

character_set_client utf8
character_set_connection utf8
character_set_database utf8
character_set_results utf8
character_set_server utf8
character_set_system utf8

Someone can tell me why? I know that if i don't specify the collation in the select statement it uses the connection_set not the server_set ...

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Multilanguages site and utf8 strings with PHP
1842
January 19, 2006 10:29AM


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.