in reply to Can I re-use modules compiled with a different build of Perl, but with the same version number on the same machine?

It is possible your new build is using DBI but not finding some other required module or shared library, such as the DBD module?

You could use ldd path/to/DBI.so to see what is not being found for linking, which may give you a hint about where to focus your debugging work.

  • Comment on Re: Can I re-use modules compiled with a different build of Perl, but with the same version number on the same machine?
  • Download Code