MGautam wrote:
Hi,
I want to connect to a "Oracle SQL Developer" with perl (running on
windows).
I tried something like,
use DBI;
$db = "database1";
$host = "10.0.0.1:1433";
$user = "username";
$password = "password";
my $dbh = DBI->connect ("DBI:Oracle:database=$db:host=$host",
From: "ficovh"
You need install the Oracle Perl DBD driver in order to connect to Oracla
DB
http://search.cpan.org/~pythian/DBD-Oracle-1.22/Oracle.pm
In windows use the Perl Package Manager for install it.
As far as I know, if using perl 5.10.0, there is no a ppm package that
offers the Ora
On Sat, Dec 20, 2008 at 6:17 AM, MGautam wrote:
> Hi,
> I want to connect to a "Oracle SQL Developer" with perl (running on
> windows).
>
> I tried something like,
>
> use DBI;
>
> $db = "database1";
> $host = "10.0.0.1:1433";
> $user = "username";
> $password = "password";
>
> my $dbh = DBI->co
MGautam wrote:
Hi,
I want to connect to a "Oracle SQL Developer" with perl (running on
windows).
I tried something like,
use DBI;
$db = "database1";
$host = "10.0.0.1:1433";
$user = "username";
$password = "password";
my $dbh = DBI->connect ("DBI:Oracle:database=$db:host=$host",
Hi,
I want to connect to a "Oracle SQL Developer" with perl (running on
windows).
I tried something like,
use DBI;
$db = "database1";
$host = "10.0.0.1:1433";
$user = "username";
$password = "password";
my $dbh = DBI->connect ("DBI:Oracle:database=$db:host=$host",
$