Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
How can I "tell" Access to use ISO 8859-1 ? Thanks in advance, Olegmy $dbh = DBI->connect("dbi:ODBC:testDSN", undef, undef); $dbh->{LongReadLen} = 65000; $dbh->{LongTruncOk} = 0; my $sql = "select * from $table_name"; my $table_records = $dbh->selectall_arrayref($sql) or die "cannot do " + . $sql; #... $dbh->disconnect;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to set encoding for database connection with MS Access
by moritz (Cardinal) on May 07, 2008 at 13:10 UTC | |
|
Re: How to set encoding for database connection with MS Access
by Anonymous Monk on May 07, 2008 at 16:28 UTC |