in reply to setting environment variable issue

Write a shell wrapper to execute your perl, and set ORACLE_HOME before you execute the perl.

Replies are listed 'Best First'.
Re^2: setting environment variable issue
by afoken (Chancellor) on Aug 09, 2011 at 19:32 UTC

    Oracle libraries are loaded when perl is already running1, while loading DBD::Oracle. So you can modify %ENV inside Perl, as long as you do so before loading DBD::Oracle. Typically, you would use a BEGIN block in the main script, before the use DBI / use DBD::Oracle lines.

    Alexander

    1) Exception to the rule: ancient oraperls, that link perl and Oracle code into a single executable

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)