in reply to Re^4: Env Variables
in thread Env Variables

Well you have no use strict; use warnings; in this code, and you use CGI; but never actually use it (consider the latter have of my previous advice. Also a templating system such as HTML::Template may be worth looking into regarding separating your HTML from your perl code.

On to Oracle matters. At work we use Solaris 10, perl 5.8.8 (I know, I'm working on it) and Oracle 10. IIRC I built DBD::Oracle and had no issues (I can check my exact steps tomorrow morning). We use DBD::Oracle a lot, and out main perl app is a CGI::Application. In the morning I'll post again with some specifics. Until then could you please post how you installed DBD::Oracle, perhaps a perl -V (note the upper case V) as well?

Replies are listed 'Best First'.
Re^6: Env Variables
by LinuxUser2008 (Acolyte) on Jun 10, 2010 at 18:13 UTC
    Hi marto
    Thanks for all the help mate..
    I finally solved the issue..
    My webserver is started by a shell script, i just needed to include these Dynamic Library Files in that, that is, i just needed to export LD_LIBRARY_PATH inside the startup Script..
    Thanks for all the effort and concern
    Blub:)
Re^6: Env Variables
by LinuxUser2008 (Acolyte) on Jun 10, 2010 at 17:35 UTC
    I am using Perl 5.8.8 also oracle client 10 .. Also, i had no issues while building the DBD for Oracle.. I had to export the ORACLE_HOME and LD_LIBRARY_PATH then i did a perl Makefile.PL , make , make test, make install.. It all worked fine..