Error message "Use of uninitialized value in concatenation (.) or string at...
The error message reads "Use of uninitialized value in concatenation (.) or string at test_connect.pl line 23"
What is strange is this code was previously working with no problems, but now seems to be producing the above message:
#!/usr/bin/perl -w
use DBI;
use strict;
my $dbh = DBI->connect( 'dbi:Oracle:database_name',
'username',
'password',
{
RaiseError => 1,
AutoCommit => 0
}
) || die "Database connection not made: $DBI::errstr";
Bookmarks