in reply to Re: %ENV and DBI
in thread %ENV and DBI
I still get the error using the two system calls or the two $ENV assignments. Any other thoughts?#!/usr/bin/perl BEGIN { #$ENV{'ORACLE_HOME'} = '/path/to/orahome'; #$ENV{'LD_LIBRARY_PATH'} = '/path/to/orahome/lib'; system("export ORACLE_HOME=/path/to/orahome"); system("export LD_LIBRARY_PATH=/path/to/orahome/lib"); }; use DBI;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: %ENV and DBI
by Fletch (Bishop) on Mar 28, 2008 at 16:54 UTC |