I found out in my MySQL I have different global and database "character_set_client" variable. show variables shows
character_set_client | utf8
while show global variables shows
character_set_client | latin1
I believe the first one is database setting. How can I change it? When I do
set character_set_client='latin1'
it is changed only for session. When I disconnect and connect again it is set back to 'utf8'. How can I change it so that it stays at 'latin1'?