in reply to Can't locate DBI.pm in @INC

If you don't have active perl (and hence don't have ppm), you can also get DBI like this:

perl -MCPAN -e 'install DBI'

That fixed it for me. And then you might need to install drivers like this (for Postgres):

perl -MCPAN -e 'install DBD::Pg'

Hope that helps.