Mar 18, 2006 #1 martinasv Technical User Feb 12, 2006 24 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.
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.
Mar 18, 2006 #2 PaulTEG Technical User Sep 26, 2002 4,469 IE 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 ;-) Upvote 0 Downvote
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 ;-)