in reply to Re^4: Print unicode strings to pdf
in thread Print unicode strings to pdf

Hello again Anonymous Monk,

Everything you are looking for is here A UTF8 round trip with MySQL.

More specifically:

use DBI(); my $dbh = DBI->connect ('dbi:mysql:test_db', $username, $password, {mysql_enable_utf8 => 1} );

Let the MySQL do all the work for you. By doing this This step connects to the database, and tells DBD::mysql to auto-convert to/from UTF-8..

Hope this helps, BR.

Seeking for Perl wisdom...on the process of learning...not there...yet!

Replies are listed 'Best First'.
Re^6: Print unicode strings to pdf
by Anonymous Monk on Mar 26, 2018 at 16:51 UTC
    Hey thanos1983! Thank you so much. Have never tried connecting with that additional setting mysql_enable_utf8. Will try it and post back later.