
davorg
Thaumaturge
/ Moderator
Apr 8, 2005, 5:40 AM
Post #2 of 2
(4773 views)
|
To see if DBI is installed and to find out which version you have, run a command like this:
perl -MDBI -le 'print $DBI::VERSION' If it isn't installed (or if it's an older version that you want to upgrade) then the easiest method is to use the 'cpan' command that comes with Perl. Don't forget that if you want to talk to Oracle, then as well as DBI you will also need DBD::Oracle. -- Dave Cross, Perl Hacker, Trainer and Writer http://www.dave.org.uk/ Get more help at Perl Monks
|