in reply to Re^2: DBI AND ORACLE 8
in thread DBI AND ORACLE 8

If you're asking how to do this, set the ORACLE_HOME environment variable to to path of the client you wish to build against, then do a manual build:

perl Makefile.PL gmake gmake test gmake install

Substitute gmake for the appropriate version for your perl distribution. If you care about the tests consider altering the ORACLE_USERID to an appropriate username/password@database string.

Replies are listed 'Best First'.
Re^4: DBI AND ORACLE 8
by BillB (Acolyte) on Nov 02, 2018 at 15:01 UTC
    Thats exactly what I needed. Thank you very much!!