in reply to DBI not installed

You also need to install DBD::mysql (or use mysqlPP instead in your DSN, but I'd recommend DBD::mysql if you've got a chance to install it).

Replies are listed 'Best First'.
Re^2: DBI not installed
by Anonymous Monk on Jun 08, 2008 at 15:37 UTC
    I have installed DBI::mysql at cpan control as well as using ppm. Still i get the same error. why is it? Can you give me any directions to check.
      DBI can't find your DBD::mysql module. Can your normal perl find it?

      You can check it by executing this line:

      perl -MDBD::mysql -e1

      If there is no output, the module is installed just fine, and I have non clue why DBI doesn't find it. If there is some noisy output about not being able to load DBD/mysql.pm, your module installation is broken.