G
Gary
Hi
I'm trying to post to the teradataforum but couldn't find any link to
post.
I'm trying to connect to Teradata and getting the following error.
CODE:
my $dbh;
my $sth;
my @row;
$dbh = DBI->connect('dbi:Teradata
B', 'user', 'password') or die
"Connecting : $DBI::errstr\n ";
$sth = $dbh->prepare('select * from TableX) or die "preparing: ",$dbh-
while (@row = $sth->fetchrow_array()) {
print "displaying";
print join(',',@row);
print "\n";
}
--Note DB, user, password have been supplied.
ERROR:
Cannot init, result is 510
Use of uninitialized value in concatenation (.) or string
at /...../......../DBD/Teradata.pm line 5078
Also does DBD:Teradata module supports encrypted logons?
I'm trying to post to the teradataforum but couldn't find any link to
post.
I'm trying to connect to Teradata and getting the following error.
CODE:
my $dbh;
my $sth;
my @row;
$dbh = DBI->connect('dbi:Teradata
"Connecting : $DBI::errstr\n ";
$sth = $dbh->prepare('select * from TableX) or die "preparing: ",$dbh-
$sth->execute() or die "executing: ", $dbh->errstr;errstr;
while (@row = $sth->fetchrow_array()) {
print "displaying";
print join(',',@row);
print "\n";
}
--Note DB, user, password have been supplied.
ERROR:
Cannot init, result is 510
Use of uninitialized value in concatenation (.) or string
at /...../......../DBD/Teradata.pm line 5078
Also does DBD:Teradata module supports encrypted logons?