Re: Perl, MySQl and Airport

2006-09-27 Thread greggallen
On Sep 26, 2006, at 10:45 AM, Joseph Alotta wrote: Greetings, I have a application in Perl that prints reports from a MySQL database. I also have DSL that is accessed via Airport in my house. Recently I bought an iMac for my wife and I want her to help me print reports from this new

Re: Perl, MySQl and Airport

2006-09-27 Thread Joel Rees
On Sep 27, 2006, at 3:43 AM, brian d foy wrote: In article [EMAIL PROTECTED], Ray Zimmerman [EMAIL PROTECTED] wrote: On Sep 26, 2006, at 12:45 PM, Joseph Alotta wrote: $host = 'localhost'; ... to connect to the MySQL database. When run from your wife's computer, you'll have to

How to know if a module is installed

2006-09-27 Thread Nobumi Iyanaga
Hello, This is a newbie question: how can I determine if a specific module is installed on a client machine? I would like to do something like this: if (MacPerl installed is true) { do this...; } else { do nothing...; } Thank you in advance for any help. Best regards,

Re: How to know if a module is installed

2006-09-27 Thread David Cantrell
On Thu, Sep 28, 2006 at 12:00:34AM +0900, Nobumi Iyanaga wrote: This is a newbie question: how can I determine if a specific module is installed on a client machine? if(eval use Whatever::Module) { do this; } else { do that; } -- David Cantrell | Reality Engineer, Ministry of

Re: How to know if a module is installed

2006-09-27 Thread Sherm Pendley
On Sep 27, 2006, at 11:00 AM, Nobumi Iyanaga wrote: This is a newbie question: how can I determine if a specific module is installed on a client machine? I would like to do something like this: if (MacPerl installed is true) { do this...; } else { do nothing...; } Thank you

Re: Perl, MySQl and Airport

2006-09-27 Thread brian d foy
In article [EMAIL PROTECTED], Joel Rees [EMAIL PROTECTED] wrote: On Sep 27, 2006, at 3:43 AM, brian d foy wrote: In article [EMAIL PROTECTED], Ray Zimmerman [EMAIL PROTECTED] wrote: On Sep 26, 2006, at 12:45 PM, Joseph Alotta wrote: ... to connect to the MySQL database. When run from