![]() |
|
more useful options | |
PerlMonks |
Re: A puzzled garbage character issues by use Perl-DBIby afoken (Chancellor) |
on Jun 17, 2009 at 12:18 UTC ( #772361=note: print w/replies, xml ) | Need Help?? |
If you mean Unicode with "Asian character", make sure every component knows that you are using Unicode. Perl should set the utf8-Flag on all strings containing Unicode, the DBI driver should know that your data may contain Unicode both while storing and while fetching, and your database should know that as well.
The Unicode setup of the database is very different from RDBMS to RDBMS. Oracle and PostgreSQL store Unicode in any CHAR or VARCHAR/VARCHAR2, MS SQL Server needs NVARCHAR or NCHAR instead of VARCHAR or CHAR, and MySQL -- I don't know. I prefer RDBMSes with less surprises. See also the tests t/40UnicodeRoundTrip.t and t/41Unicode.t in DBD::ODBC Alexander
-- Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
In Section
Seekers of Perl Wisdom
|
|