Jie Zhang wrote:
I tried perl -MDBI -e "DBI->installed_versions" I got : Can't locate auto/DBI/installed_v.al in @INC (@INC contains:
The installed_versions() method was added to DBI in version 1.38, August 2003 so the fact that you got an error means that you have a version before 1.38 and therefore can't use this particular method and will have to use perl -MDBI -e "print $DBI::VERSION" instead.
-- Jeff
