in reply to Re^3: (mysql) failing to locate object method
in thread (mysql) failing to locate object method

hi Gilimanjaro

thank u very much for giving the immediate response i tried to

run the program as per ur instructions and i didnt get any output

This is the program

====================

use strict;

use DBI;

print "$_\n" for grep /^a-z/, keys %DBI::;

output of the program is

========================

C:\ram>perl mysqltest.pl

C:\ram>

can i know what could be the error, if it is dbi installing problem

how can i uninstall the dbi package
  • Comment on Re^4: (mysql) failing to locate object method

Replies are listed 'Best First'.
Re^5: (mysql) failing to locate object method
by Gilimanjaro (Hermit) on Aug 03, 2004 at 12:58 UTC
    This means DBI is not loaded properly, so it's probably not installed properly. I don't know much about ppm, but what I can find online seems to indicate you need to:
    ppm remove DBI ppm install DBI
    I hope it helps....