Leser: 2
|< 1 2 >| | 13 Einträge, 2 Seiten |
[error] DBD::Oracle object version 1.20 does not match bootstrap parameter 1.22 at /opt/lampp/lib/perl5/5.10.0/i686-linux/DynaLoader.pm line 226.\n
1 2 3 4 5 6 7 8 9
#!/usr/bin/perl use strict; use warnings; use DBI; use lib "../lib/"; use DBD::Oracle;
bieber+2008-10-09 13:03:33--Nun wollte ich mittels DBD::Oracle auf diese Netzwerk-Datenbanken zugreifen, hierbei wollte ich vermeiden, das Modul in perl einzubinden.
QuoteAlso habe ich es einfach entpackt. Die Software soll halt protierbar sein...
Quotenun bekomme ich aber folgende Fehlermeldung:
Code: (dl )[error] DBD::Oracle object version 1.20 does not match bootstrap parameter 1.22 at /opt/lampp/lib/perl5/5.10.0/i686-linux/DynaLoader.pm line 226.\n
so binde ich es ein:
Quotedas ist mir leider zu hoch :(, könnte mir jm. die Fehlermeldung erklären?
1 2 3
use lib "../lib/"; use CGI::Session qw/-ip-match/; use HTML::Template::Compiled;
1
2
Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at Makefile.PL line 10.
BEGIN failed--compilation aborted at Makefile.PL line 10.
If you are planning to make DBI in order to install DBD::Oracle, stop now, before you get frustrated, because the perl you are using does is not built to support DBD::Oracle. I'm sure. It's a 5.6.1 build that - unless you were an expert when you built it yourself - does not have the needed libs in the right place. And /if/ you were an expert, you would have solved this question yourself anyway.
bieber+2008-10-09 13:43:33--wenn ich das makefile ausführe kommt das:
Code: (dl )1
2Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at Makefile.PL line 10.
BEGIN failed--compilation aborted at Makefile.PL line 10.
1
2
3
4
5
perl Makefile.PL
Argument "6.30_01" isn't numeric in subroutine entry at Makefile.PL line 10
main::BEGIN() called at /usr/share/perl/5.8/ExtUtils/MakeMaker.pm line 1 0
eval {...} called at /usr/share/perl/5.8/ExtUtils/MakeMaker.pm line 10
Can't locate DBI.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /u sr/share/perl/5.8 /usr/local/lib/site_perl .) at Makefile.PL line 21.
1
2
3
4
5
6
17 # This DBI must be installed before we can build a DBD.
18 # For those not using Dynamic loading this means building a
19 # new static perl in the DBI directory by saying 'make perl'
20 # and then using _that_ perl to make this one.
21 use DBI 1.51;
22 use DBI::DBD; # DBD creation tools
|< 1 2 >| | 13 Einträge, 2 Seiten |