Dear Monks,

Can anyone helpme with this MySQL/DBI.pm issue? Server, database, relevant table and relevant column all have character set = latin1 (default collation). This handles normal US-ASCII characters hansomely but when it comes to characters like Â, Ã and Ä (see execute argument below), the result in the table row is garbled. Each character ends up as an individual shape of some sort such as: ┬ ├ ─

Note that entering characters like Â, Ã and Ä directly into the table produces the correct results. I know the issue has something to do with how Perl, or the DBI in particular, handles non-standard (albeit latin1) characters.

The basic code follows. Many thanks!
# Connect to database my $dbh = DBI->connect("DBI:mysql:database",'username','password') or +print DBI->errstr; # Prepare and execute query my $query = $dbh->prepare_cached('INSERT INTO test (text) VALUES (?)') + or print $dbh->errstr; $query->execute('A Â Ã Ä') or print $query->errstr; # Disconnect $dbh->disconnect;

In reply to Perl Character Set by indiansummersky

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.