when importing XML RSS into mysql tables, I use a perl script with DBI, XML:Simple, LWP, ...
the issue:
$description="György";
my $sth = $dbh->prepare( q{ INSERT INTO `testdb` (`description`) VALUES (?) });
$sth->execute($description);
after the scripts runs, in mysql table, I always get "György" instead of "György"??
I tried out all decode methods, but it is not working out; when I save the text directly via phpMyAdmin, no issue, so my sql table settings are ok ...
the issue:
$description="György";
my $sth = $dbh->prepare( q{ INSERT INTO `testdb` (`description`) VALUES (?) });
$sth->execute($description);
after the scripts runs, in mysql table, I always get "György" instead of "György"??
I tried out all decode methods, but it is not working out; when I save the text directly via phpMyAdmin, no issue, so my sql table settings are ok ...