I still have a problem with my DBD:Adabas-Module
Versions:
Perl v5.8.3 built for HPUX-10.20
DBI v1.38
DBD:Adabas-0.2003

my script:

#!/usr/local/bin/perl -w

use DBI;

print "Test\n";

my $user = "somebody";
my $password = "anything";
my $data_source = "dbi:Adabas:refdb"; # TBD

$dbh = DBI->connect ( $data_source, $user, $password )
                     or die "connection not established !\n";

$dbh->disconnect;
---

what I got:

install_driver(Adabas) failed: Can't locate loadable object for module Adabas 
in @INC (@INC contains: /usr/local/lib/perl5/5.8.3/PA-RISC2.0 
/usr/local/lib/perl5/5.8.3 /usr/local/lib/perl5/site_perl/5.8.3/PA-RISC2.0 
/usr/local/lib/perl5/site_perl/5.8.3 /usr/local/lib/perl5/site_perl .) at 
(eval 1) line 3
Compilation failed in require at (eval 1) line 3.
Perhaps a module that DBD::Adabas requires hasn't been fully installed
 at ./dbi-test1.pl line 15
Use of inherited AUTOLOAD for non-method Adabas::exit() is deprecated at 
/usr/local/lib/perl5/5.8.3/DBD/Adabas.pm line 44.
Can't locate auto/Adabas/exit.al in @INC (@INC contains: 
/usr/local/lib/perl5/5.8.3/PA-RISC2.0 /usr/local/lib/perl5/5.8.3 
/usr/local/lib/perl5/site_perl/5.8.3/PA-RISC2.0 
/usr/local/lib/perl5/site_perl/5.8.3 /usr/local/lib/perl5/site_perl .) at 
/usr/local/lib/perl5/5.8.3/DBD/Adabas.pm line 44
END failed--call queue aborted.

There is a Adabas.pm in /usr/local/lib/perl5/5.8.3/DBD/ is this the right 
place?

My odbc.ini was:
[ODBC Data Sources]
test

[test]
ServerDB=refdb
ServerNode=  # according to the docu this should be free!?!?!

Where is the problem?
Thank you very much

Gruss Christian

Reply via email to