Code Comments
Programming Forum and web based access to our favorite programming groups.On Fri, 2008-04-25 at 09:08 -0700, Dunston Rocks wrote:
> $ENV{TNS_ADMIN} = 'C:\oracle\product\10.2.0\client_2\NETWORK\ADMIN\
tnsnam
> es.ora'; # Also tried replacing these with POSIX-Style paths
> $ENV{ORACLE_HOME} = "C:\oracle\product\10.2.0\client_2";
> $ENV{NLS_LANG} = "AMERICAN_AMERICA.WE8DEC";
Get rid of them backslashes, that's DOS stuff! :)
you can use ENV{ORACLE_HOME} = "C:/oracle/product/10.2.0/client_2"
or (IIRC) ENV{ORACLE_HOME} = "C:\\oracle\\product\\10.2.0\\client_2"
Personally, I always use the first form.
HTH
Jared
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.