in reply to Re^2: DBI handling special chars like accented ones
in thread DBI handling special chars like accented ones
use utf8; ... my $string = "voilá monsieur"; utf8::upgrade($string); # $string is now ready to be INSERTed by DBI, # but you still need to do this $dbhandle->do("SET CHARACTER SET utf8"); # now you can perform the INSERT
|
|---|