| Article: |
Apache Web-Serving With Mac OS X, Part 5 | |
| Subject: | Do it over again with Perl | |
| Date: | 2002-03-13 20:51:56 | |
| From: | morbus | |
|
Response to: Do it over again with Perl
|
||
|
Ultimately, you'll want to either look at or join the osx@perl.org list. You can see the archives here (there are some mentions of DBI).
|
||
Showing messages 1 through 2 of 2.
-
Do it over again with Perl
2002-03-18 19:45:57 gskluzacek [View]
-
Do it over again with Perl
2002-03-19 14:04:21 Morbus Iff |
[View]
"sudo" says to run the next command as the root user. "perl" starts the perl interpreter, and automatically loads in a module called "CPAN" ("-MCPAN" is equivalent to "use CPAN;"). Finally, "-e" is the "execute this perl code" command, and we're saying to execute the "shell" command of CPAN.
The second command installs the actual module. If you know your module name, you can use it - so "install XML::Parser", "install LWP::Simple", "install DBI::mysql", and so on and so forth. If you do the "Bundle::DBD::mysql" as above, then you don't have to worry about installing the matching DBI module - it's contained within this "Bundle".



sudo perl -MCPAN -eshell
install Bundle::DBD::mysql
The 2nd one looks to install the mysql database driver for dbi, but the 1st one I'm clueless on. Is there something similar to instal the acutal DBI module? Thanks.
Greg Skluzacek
gskluzacek@mac.com