ddaupert has asked for the wisdom of the Perl Monks concerning the following question:
I've had no dealings with encoding previously, and am running into a bit of complexity. This may be a bit long, so let me first summarize.
SUMMARY: There are multiple steps data passes through where encoding may come into play. The input step is different between production and testing, but all further steps are the same. Production will import data from a MSSQL Database, whereas testing will input data from Excel spreadsheets. For now, I am focused on the testing process. (Yes, it would be better to also import test data from MSSQL, but we are constrained.)
OUTLINE of the testing source-to-destination steps:
The input spreadsheet I have contains user data where names and addresses are from some European countries (I do not know which, nor what languages are in play.) I am running into garbled characters from the very first step. I am not sure how to inspect the data at each step to compare data along the way.
I believe Excel stores data using cp1252, so have tried to convert the data to utf8. The code below gives the error "Cannot decode string with wide characters" which makes me think there may be mixed-encoded data in my input; that is, maybe some columns are of different encoding than other columns.
package DB::SQLite::Tables; use warnings; use strict; use Carp; use Encode; use Spreadsheet::ParseExcel::Simple; sub load_test_people_tbl { my ( $the, $path, $readfile, $sqlite_schema, $do_load ) = @_; my $data_obj = Spreadsheet::ParseExcel::Simple->read( "$path/$readfile" ); foreach my $sheet ($data_obj->sheets) { ROW: while ( $sheet->has_data ) { @row = $sheet->next_row; $row_count_ppl++; # get header from input file if ( $row_count_ppl == 1 ) { @fields = @row; map { $_ =~ s{[\s+|-]}{_}xms } @fields; } # Gives error "Cannot decode string with wide characters" map { $_ = decode("utf8", $_) } @row; # Uses DBIx::Class if ( $do_load == 1 ) { $sqlite_schema->populate('Person', [ \@fields, \@row, ]); } } # end ROW } } # end load_test_people_tbl
Example input/output character mangling:
Some name in input xls spreadsheet: Toxv‘rd
later....Same name in output csv spreadsheet: Toxv‘rd
QUESTIONS:
/dennis
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mixed character encoding issues
by zentara (Cardinal) on Jul 05, 2012 at 23:03 UTC | |
by ddaupert (Initiate) on Jul 06, 2012 at 16:48 UTC | |
|
Re: Mixed character encoding issues
by nikosv (Deacon) on Jul 06, 2012 at 14:48 UTC | |
by ddaupert (Initiate) on Jul 06, 2012 at 21:44 UTC | |
by nikosv (Deacon) on Jul 07, 2012 at 08:17 UTC | |
by ddaupert (Initiate) on Jul 11, 2012 at 02:16 UTC | |
by nikosv (Deacon) on Jul 11, 2012 at 14:43 UTC |