http://qs321.pair.com?node_id=1049333


in reply to Re: DBD::Oracle charsetid symbol error
in thread DBD::Oracle charsetid symbol error

If I intentionally mess up LD_LIBRARY_PATH it dies differently since it can't find the lib. In this case it finds the lib but grouches about the missing 'charsetid' symbol. And I said I had little control since I know I can install another Perl install, but with this system unable to hit the outside world with a network, getting the modules set up wouldn't be pretty and when I move to deploy it would be torturous. It's working other than this one part, so unless I was certain that this was due to an old Perl I wouldn't want to go that way. I am using DBD::Proxy as a workaround for now.
  • Comment on Re^2: DBD::Oracle charsetid symbol error

Replies are listed 'Best First'.
Re^3: DBD::Oracle charsetid symbol error
by Anonymous Monk on Aug 14, 2013 at 02:36 UTC

    If I intentionally mess up LD_LIBRARY_PATH it dies differently since it can't find the lib.

    Well, resolving symbols kind of happens make-ing/building/compiling at linking/linker time , so if the symbol was missing before DBD/Oracle.so was created, Oracle.so wouldn't have been created

    That Oracle.so now isn't being loaded because of a missing symbol says that LD_LIBRARY_PATH is wrong

    See also Re^4: DBD::mysql fail install check (objdump -p missing symbol)