You are trying to use version 0.93 of DBI.pm with version 1.14 of DBI.so (assuming .so is the shared library extension used under Linux).
You could use something like:
perl -le 'for(@INC){for(glob("$_/DBI.*")){print}}'
to see where the other version of DBI.pm or DBI.so might be and perhaps give you an idea why you have incompatible versions.
The usual cause for this is that you installed an old DBI.pm by hand and didn't install the matching DBI.so.
-
tye
(but my friends call me "Tye") |