Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

yum installer and DBI

Status
Not open for further replies.

martinasv

Technical User
Feb 12, 2006
24
0
0
HR
Hi, everyone!

I was wondering... If I write:

# yum install mysql
...
# yum install mysql-server
...

Is DBI installed together with those, or do I have to install it separately?

Tnx.
 
dbi is a perl module, not mysql
Code:
use DBI;
in a perl script will tell you soon enough if the perl dbi is installed

if you don't fire up CPAN
Code:
# perl -MCPAN -e shell
#install DBI

HTH


Paul
------------------------------------
Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top