On Mon, Aug 09, 2004 at 07:02:20PM +0200, mAsterdam wrote: > Tim Bunce wrote: > > >mAsterdam wrote: > >>Oracle 8.1.7 ... > > >Can you send me the output (stdout+stderr) from "perl -Mblib t/<foo>.t" > >where <foo> is each of the tests that generated that error? > >(Then the same again but with DBI_TRACE=9 would also be handy.) > > @foo = ('23wide_db', '23wide_db_al32utf8');
> set $ENV{NLS_LANG}=AMERICAN_AMERICA.AL32UTF8 > DBI connect('','scott/tiger',...) failed: ORA-12705: invalid or unknown NLS > parameter value specified (DBD ERROR: OCISessionBegin) at t/nchar_test_lib.pl line > 143 > 1..0 # Skip Not connected to oracle Ah. Oracle 8 client doesn't understand "AL32UTF8". > $ perl -Mblib t/23wide_db_al32utf8.t > set $ENV{NLS_LANG}=AMERICAN_AMERICA.AL32UTF8 > DBI connect('','scott/tiger',...) failed: ORA-12705: invalid or unknown NLS > parameter value specified (DBD ERROR: OCISessionBegin) at t/nchar_test_lib.pl line > 143 Same. Both those tests should be automatically skipped for Oracle 8. You can ignore the failures. Tim.