Jump to content

How can I change the characterset in mysql console?


co.ador

Recommended Posts

To set the connection to use UTF8, you can simply do a query like:

 

 

SET NAMES utf8;

 

 

If you want to set UTF8 as the default, you'll have to do some tinkering in my.conf (or my.ini or whatever it's called).  I'm sure you can find the variable name by googling.

 

 

As for setting a table character set:

 

CREATE TABLE sometable (

    field1 varchar(255) CHARSET=UTF8

);

 

(You might have to do "CHARACTER SET UTF8" instead of CHARSET....)

 

 

Or:

 

CREATE TABLE sometable (

    field1 varchar(255)

) CHARSET=UTF8;

 

As for the default on that, I'm sure it's another my.cnf option.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.