in reply to Re^2: (mysql) failing to locate object method
in thread (mysql) failing to locate object method
after your 'use DBI;'. This single line will show you all symbols (including methods) in your DBI package after you've used it. If this list contains 'connect' then there's something wrong with your perl. If it doesn't, then something is wrong with your DBI. You could try reinstalling your DBI package maybe...print "$_\n" for grep /^[a-z]/, keys %DBI::;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: (mysql) failing to locate object method
by sriraj (Initiate) on Aug 03, 2004 at 12:16 UTC | |
by Gilimanjaro (Hermit) on Aug 03, 2004 at 12:58 UTC |