
Flavio,
On Tue, Nov 30, 2010 at 2:25 PM, Boniforti Flavio
I've tried inserting the lines you suggested *before* the "Params" section, like:
Name => 'Database clienti', Module => 'Kernel::System::CustomerUser::DB', SourceCharset => 'utf-8', DestCharset => 'utf-8', Params => {
but it didn't change my output.
No, you should actually include them in the Params section, otherwise they're not used.
You say "if your remote database is unicode", what do you mean by this?
well, some databases and/or database drivers return ISO data, some do Unicode, you need to take this into account when configuring the data source.
Also tried with:
SourceCharset => 'Latin1_General', DestCharset => 'utf-8',
Latin1_General is not a character set name, or at least not one recognized by Perl's Encode, it's a MS SQL Server Collation name. Please try iso-8859-1 instead. -- Mike