fabrizio_start_perl has asked for the wisdom of the Perl Monks concerning the following question:
Hello Support, I am connecting through a perl script to an Oracle database using:
but i noticed that query's result is different if i run it manually through SQL developer client. So i would like to align script's behavior to SQL developer one (correct one), and for doing it i would like to ask you how to modify perl connection string to use java method (example orai18n.jar file) instead of DBI library method. Please let me know if you have any other suggestion about this scenario. Thanks. Regards, Fabriziouse DBI; $dbh = DBI->connect("dbi:Oracle://<ALIAS>:1531/<SID>",$user, $password +, { RaiseError => 1, AutoCommit => 0 }); my $sql ="select ....";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl connection string to Oracle Database
by runrig (Abbot) on Oct 26, 2015 at 15:20 UTC | |
by Corion (Patriarch) on Oct 26, 2015 at 15:26 UTC | |
by fabrizio_start_perl (Novice) on Oct 26, 2015 at 16:05 UTC | |
by Corion (Patriarch) on Oct 26, 2015 at 16:13 UTC | |
by fabrizio_start_perl (Novice) on Oct 26, 2015 at 16:43 UTC | |
| |
|
Re: Perl connection string to Oracle Database
by kennethk (Abbot) on Oct 26, 2015 at 15:00 UTC |