Here is a system that handles everything in latin1, but I want this one particular table to be read as utf8, then properly encoded into JSON.

How do I switch the connection to utf8, then read it, then switch the connection back?

I know how to do the JSON, but the MySQL I do not know about.

I am using the DBI MySQL driver, and this is an old CGI program.

link|improve this question

feedback

2 Answers

You could try something like this:

$dbh->do('set names utf8');
link|improve this answer
How do you set it back when you are done? I need to follow my code up with a bunch of existing non-utf8 code. – George Bailey Jan 26 at 19:23
@GeorgeBailey, $dbh->do("set names 'latin1'"); – cjm Jan 26 at 19:36
feedback

you can change connection encoding like this:

$dbh->do("set names 'utf8';");

# ...do something with utf8 tables...

$dbh->do("set names 'latin1';");

# do something with latin1 tables

$dbh->disconnect;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.