in reply to Re: trouble installing Class::DBI::Loader::Oracle
in thread trouble installing Class::DBI::Loader::Oracle

Thanks Folks. I was able to force install it and get working.
  • Comment on Re^2: trouble installing Class::DBI::Loader::Oracle

Replies are listed 'Best First'.
Re^3: trouble installing Class::DBI::Loader::Oracle
by phdye (Novice) on Dec 04, 2014 at 19:08 UTC
    The attached patch to Class::DBI:Loader::Oracle resolves the issue. Class-DBI-Loader-Oracle : make test cp lib/Class/DBI/Loader/Oracle.pm blib/lib/Class/DBI/Loader/Oracle.pm PERL_DL_NONLAZY=1 "/usr/bin/perl.exe" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/00-load.t ....... ok t/01-basic.t ...... ok t/pod-coverage.t .. skipped: Test::Pod::Coverage 1.04 required for testing POD coverage t/pod.t ........... skipped: Test::Pod 1.14 required for testing POD All tests successful. Files=4, Tests=7, 2 wallclock secs ( 0.09 usr 0.02 sys + 0.40 cusr 0.20 csys = 0.71 CPU) Result: PASS ==== patch - start ==== *** lib/Class/DBI/Loader/Oracle.pm~ 2008-02-19 18:33:26.000000000 -0500 --- lib/Class/DBI/Loader/Oracle.pm 2014-12-04 14:00:57.523394700 -0500 *************** *** 4,9 **** --- 4,10 ---- use strict; use DBI; use Carp; + use Class::DBI; require Class::DBI::Oracle; use base 'Class::DBI::Loader::Generic'; use vars '$VERSION'; ==== patch - end ====