in reply to DBI Style Inquiry

To quote "Perl Best Practices" - "Subroutines always receive their arguments in the @_ array. But accessing them via $_[0],$_1, etc. directly is almost always a Very Bad Idea." See page 178

Conway goes on to say "Moreover, it's easy to forget that each element of @_ is an alias for the original argument; that changing $_[0] changes the variable containing that argument."

So please unpack "@_" and "chomp" the copy. Who knows the calling code might need the trailing "$/"!

Replies are listed 'Best First'.
Re^2: DBI Style Inquiry
by perlfan (Parson) on Jun 27, 2013 at 14:03 UTC
    It would behoove the OP to get this book and use it hand in hand with Perl::Critic; In combination with Perl::Tidy, he may keep his OCD in check. Once he forms his own ways and opinions, he can start to customize both.