fattahsafa has asked for the wisdom of the Perl Monks concerning the following question:
I'm using ActiveStat perl on Windows Server 2008, ORACLE 10gBEGIN { $ENV{NLS_LANG} = "AMERICAN_AMERICA.UTF8"; $ENV{OCI_NLS_CHARSET_ID} = "AMERICAN_AMERICA.UTF8"; $ENV{ORACLE_HOME} = #The path to the instant Oracle client"; } #Connect to database my $DBHandle = DBI->connect( "dbi:Oraclehost=$host;sid=$sid;port=$port", $userName, $passWord ) or die "Connection Error: $DBI::errstr\n";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Perl to Oracle Connection Error: ERROR OCINlsEnvironmentVariableGet(OCI_NLS_CHARSET_ID)
by Corion (Patriarch) on Dec 16, 2014 at 08:54 UTC | |
| |
Re: Perl to Oracle Connection Error: ERROR OCINlsEnvironmentVariableGet(OCI_NLS_CHARSET_ID)
by mje (Curate) on Dec 16, 2014 at 09:48 UTC | |
Re: Perl to Oracle Connection Error: ERROR OCINlsEnvironmentVariableGet(OCI_NLS_CHARSET_ID)
by Mr. Muskrat (Canon) on Dec 16, 2014 at 17:11 UTC | |
Re: Perl to Oracle Connection Error: ERROR OCINlsEnvironmentVariableGet(OCI_NLS_CHARSET_ID)
by mje (Curate) on Dec 16, 2014 at 09:53 UTC | |
Re: Perl to Oracle Connection Error: ERROR OCINlsEnvironmentVariableGet(OCI_NLS_CHARSET_ID)
by fattahsafa (Sexton) on Dec 16, 2014 at 17:40 UTC |