Help for this page

Select Code to Download


  1. or download this
    # Instead of:
    $sth->execute(@data);
    ...
    my @row = $sth->fetchrow;
    # use:
    my @row = map { Encode::decode('utf8', $_) } $sth->fetchrow;