vote up 1 vote down star
1

My delicious-to-wp perl script works but gives for all "weird" characters even weirder output. So I tried

$description = decode_utf8( $description );

but that doesnt make a difference. I would like e.g. “go live” to become “go live” and not “go live” How can I handle unicode in Perl so that this works?

UPDATE: I found the problem was to set utf of DBI I had to set in Perl:

my $sql = qq{SET NAMES 'utf8';};
$dbh->do($sql);

That was the part that I had to set, tricky. Thanks!

flag
Distill your code to the shortest possible script that still exhibits the problem. Take the database out of the equation to figure out if the problem has anything to do with Perl. Come up with something others can test and debug. – Sinan Ünür Jun 11 at 21:34

2 Answers

vote up 1 vote down check

It may have nothing to do with Perl. Check to make sure you're using UTF encodings in the pertinent MySQL table columns.

link|flag
The tables were in UTF but I had to add the set names to the DBI in perl... – cogmios Jun 11 at 22:44
vote up 1 vote down

It's worth noting that if you're running a version of DBD::mysql new enough (3.0008 on), you can do the following: $dbh->{'mysql_enable_utf8'} = 1; and then everything's decode()ed/encode()ed for you on the way out from/in to DBI.

link|flag

Your Answer

Get an OpenID
or

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