8
votes
36answers
943 views
What Perl module would you be lost without?
The title says it all really
6
votes
2answers
131 views
How can I install a CPAN module that is in the latest perl, without installing the new perl?
I'd like to install a Perl module (in this case, FindBin), but since it is included in the perl5.10.1 distribution, cpan wants to install perl5.10 for me. Is there any way of inst …
2
votes
4answers
90 views
How to Subselect with DBIx::Class?
I'm starting with DBIx::Class and i have a subselect that wanted to be in DBIx::Class, but i'm getting confused and can't build the code.
My MySQL select is this one:
Select name …
3
votes
4answers
108 views
In Perl, how do I put multiple packages in a single .pm file?
I'm pretty sure that I read somewhere that it's possible, but there are a few gotchas that you need to be aware of. Unfortunately, I can't find the tutorial or page that described …
4
votes
3answers
82 views
How do I install deps for CPAN module without installing it?
This is a follow-up to my previous question about developing Perl applications. Let’s say I develop an application as a CPAN module using Module::Install. Now I upload the code to …
1
vote
3answers
98 views
OS specific tests for Perl test scripts
Is there a more elegant way to write the portion of the test script which is O/S dependant?
Please refer to the code below the comment line.
Background: Module Perl::Tags creates …
2
votes
1answer
50 views
gVim perl tags under Win32 - should I use Perl::Tags ?
Hi, I am a newbie when it comes to gVim, Perl & test scripts, so I hope this is not a stupid question?
I have successfully installed Perl::Tags 0.26 under Linux and OS X but a …
4
votes
2answers
58 views
How do I override perl’s compilation flags when building modules?
When building a Perl module ExtUtils::MakeMaker uses the flags defined in Config.pm (see perldoc Config) for values such as ccflags and ldflags.
How do I override theses values (s …
3
votes
2answers
120 views
Should a Perl constructor return an undef or a “invalid” object?
Question:
What is considered to be "Best practice" - and why - of handling errors in a constructor?.
"Best Practice" can be a quote from Schwartz, or 50% of CPAN modules use it, …
1
vote
2answers
151 views
How do I refresh an array in a foreach loop?
I am writing a Perl script to do some mathematical operations on a hash. This hash contains the values as given in the sample below. I have written the code below. If I execute thi …
10
votes
1answer
143 views
Is there any Perl module that can keep me from adding `or die` to anything that can fail?
I'm writing code that runs all sorts of external commands as well as various filesystem commands that can fail.
Is there any module that can save me the trouble of adding or die t …
2
votes
4answers
254 views
Using Perl, how can I create charts using values in a CSV file?
I am new to this and need a clue on how to do this task. I have a csv file with following sample data:
site,type,2009-01-01,2009-01-02,....
X,A,12,10,...
X,B,10,23,...
Y,A,20,33,. …
1
vote
4answers
163 views
How do I find all modules used in a Perl script and install them?
I have been given a few Perl scripts to deploy.
What is the easiest way to find and install all modules used by these scripts?
EDIT:
From what I can find there are no conditiona …
1
vote
2answers
105 views
Why can’t my Perl object find its skip() method, even though I can call it as a subroutine?
I'm working on a Perl module and whenever I call the skip() method I wrote in the following way:
$cursor->skip(4);
I get:
Undefined subroutine &MyModule::Cursor::skip call …
4
votes
1answer
105 views
How do you specify a package version in Perl?
I'm a bit confused by conflicting advice between pre-5.10.0 documents and the more recent version module. Perl Best Practices makes it pretty clear that version strings ('v1.0.3') …
