Hi guys,
How can I stop mysql from converting '
into ’
when I do an insert?
i believe it has something to do with charset or something?
I am using php to do the mysql_insert.
Hi guys,
How can I stop mysql from converting '
into ’
when I do an insert?
i believe it has something to do with charset or something?
I am using php to do the mysql_insert.
Maybe someone will know the answer immediately, but I don't. However here are a few suggestions on what to examine (and possibly expand the question on)
When dealing with encodings and escaping you should include the full history of data
The above is because anything that writes to a text file (browser, mysql client, web server, php application, to name a few layers that could have done it) can mess up character coding.
To troubleshoot, you can start eliminating, and thus the first step (in my book), is to
SHOW VARIABLES LIKE 'character_set%'
SHOW CREATE TABLE TableName
, and look for charset and collation info, both default for the table and explicit definition on columnsHaving said all of the above, I don't think any western script would transcode a single quote character. So you might need to look at your escaping and other data processing.
EDIT Most of the above from answer and discussion here
The single quotation mark you posted is called an 'acute accent', which is often converted from the generic single quotation mark by some web applications. It's a UTF8
character, which when inserted into a Latin-1
database translates to '’'. This means that you need to change MySQL's charset to UTF8
, or alternatively change your website's charset to Latin-1
. The former would be preferred:
ALTER DATABASE YourDatabase CHARACTER SET utf8;
ALTER TABLE YourTableOne CONVERT TO CHARACTER SET utf8;
ALTER TABLE YourTableTwo CONVERT TO CHARACTER SET utf8;
...
ALTER TABLE YourTableN CONVERT TO CHARACTER SET utf8;