Re: How to set LD_LIBRARY_PATH

2010-05-28 Thread Shlomi Fish
{PATH}=$ORACLE_HOME/bin:$PATH; $ENV{LD_LIBRARY_PATH}=$ORACLE_HOME/lib; } use DBD::Oracle; [/code] That's because use is executed at compile-time instead of run-time. Regards, Shlomi Fish -- - Shlomi Fish http

Re: Help on using on *nix and Windows

2010-04-19 Thread Shlomi Fish
doing it using cygwin or something if that is an option or alternatively writing these command to a file first and then loading it using input-file.txt which is more portable. Regards, Shlomi Fish -- - Shlomi Fish http

Re: Any Oracle DBA Around ???? - Perl DBI of Oracle Enterprise Manager (OEM) Install

2010-04-08 Thread Shlomi Fish
at compile time. If you want to test whether DBI exists and if so use a fallback code, use something like (untested): {{{ eval { require DBI ; }; if ($@) { # Fail gracefully } else { # Yay! We have DBI. } }}} Hope it helps. Regards, Shlomi Fish On Wed, Apr 7, 2010 at 12:16

Re: Any Oracle DBA Around ???? - Perl DBI of Oracle Enterprise Manager (OEM) Install

2010-04-07 Thread Shlomi Fish
be interested in hearing that. Regards, Shlomi Fish On Tuesday 06 Apr 2010 14:47:16 newbie01 perl wrote: Hi all, We currently have OEM installed but will have to uninstall it due to Oracle Licensing issues. Customers do not want to pay for the performance and diagnostic pack

Re: DBD::DB2 where to get a client library

2006-06-01 Thread Shlomi Fish
://www-306.ibm.com/software/data/db2/ Regards, Shlomi Fish - Shlomi Fish [EMAIL PROTECTED] Homepage:http://www.shlomifish.org/ 95% of the programmers consider 95% of the code they did not write

closing dbh with active statement handles warnings with DBD::SQLite

2006-05-02 Thread Shlomi Fish
line 550 at mytest.pl line 10. I'm looking for a way to eliminate these warnings without breaking anything, whether or not I'm using these statement handles. Regards, Shlomi Fish - Shlomi Fish [EMAIL PROTECTED