I am trying to write utf-8 strings to a MySQL table using perl/DBI. For some reason the string is getting truncated at the first non-ascii character.
For example, if I set up the following table:
CREATE DATABASE testdb DEFAULT CHARSET=utf8;
CREATE TABLE testdb.testtable (textval CHAR(30)) DEFAULT CHARSET=utf8;
And then run the following perl code:
#!/usr/bin/perl
use strict;
use DBI;
my $dbh = DBI->connect('DBI:mysql:host=localhost;database=testdb', 'testuser', 'somepassword', {mysql_enable_utf8 => 1}) or die $DBI::errstr;
$dbh->do('SET NAMES utf8');
$dbh->do("INSERT INTO testtable (textval) VALUES ('the N\xFCrburgring')");
It actually writes "the N". (when it should be writing "the Nürburgring")
Looking in the MySQL query log, I see this:
271 Query INSERT INTO testtable (textval) VALUES ('the Nürburgring')
So the string is reaching the DB server intact.
If I enter the same query directly in the MySQL console:
INSERT INTO testtable (textval) VALUES ('the Nürburgring');
The entire string is written correctly. Any idea what I'm doing wrong?
\xFCtoüin your script? – TLP Oct 29 '11 at 0:00