OS: NT4 SP6
Perl v5.6.1 with ActiveState build 631
Oracle 9.2.0.1
Installed modules: most current DBI and DBD-Oracle from activestate.com
Problem:
When I ran the following codes,
$dbh = DBI->connect('$dns','$user_name','$password') or die "Didn't make
it\n$DBI::errstr\n";
I always got the following message no matter how I changed $dns,
$user_name, and $password,
Use of uninitialized value in concatenation (.) or string at
d:/perl/site/lib/DBI.pm line 576.
DBI connect('$dns','$user_name'...) failed: at d:/temp/test.pl line 7
(the $dbh line)
Didn't make it
Any suggestions for my problem? Thanks in advance.
Jeff