Re: Perl + DBD-Oracle, problems with encoding when "PerlHandler Apache::Registry" is in use

2014-11-23 Thread Dr James Smith
On 23/11/2014 05:42, Ruben Safir wrote: did you ever get this worked out. I'm looking to use perl with my oracle set up. Any tips would be appreciated. I had similar problems Apache 2.2 with DBD::Oracle, after serious debugging there was a nasty environment variable issue - DBD::Oracle when fi

Re: Perl + DBD-Oracle, problems with encoding when "PerlHandler Apache::Registry" is in use

2014-11-22 Thread Ruben Safir
did you ever get this worked out. I'm looking to use perl with my oracle set up. Any tips would be appreciated. Ruben On Fri, Feb 19, 2010 at 05:47:51PM +0700, michael kapelko wrote: > Hello. > Here's a short script I used to find out the problem with the > Apache::Registry: > > #!/usr/bin/p

Re: Perl + DBD-Oracle, problems with encoding when "PerlHandler Apache::Registry" is in use

2010-02-19 Thread Perrin Harkins
On Fri, Feb 19, 2010 at 5:47 AM, michael kapelko wrote: > When invoked directly by the shell or in web page WITHOUT "PerlHandler > Apache::Registry", the UTF-8 encoded string in Russian is printed just > fine. But when "PerlHandler Apache::Registry" is used, only are > printed in web page. C

Perl + DBD-Oracle, problems with encoding when "PerlHandler Apache::Registry" is in use

2010-02-19 Thread michael kapelko
Hello. Here's a short script I used to find out the problem with the Apache::Registry: #!/usr/bin/perl -wT use strict; use warnings; use CGI; use DBI; use DBI qw(:sql_types); use encoding 'utf-8'; my $cgi = new CGI; print $cgi->header(-type    => "text/html",                   -charset => "utf-8"