http://www.perlmonks.org?node_id=1040962


in reply to DBI Style Inquiry

G'day edict,

Welcome to the monastery.

Take a look at the Perl style guide for some general guidelines on formatting your code.

With the specific code you posted, you're returning from the subroutine before the last two statements are run. You probably want something closer to this:

sub get_loc { ... my @loc = ... $sth->finish; $dbh->disconnect ... return @loc; }

-- Ken

Replies are listed 'Best First'.
Re^2: DBI Style Inquiry
by edict (Novice) on Jun 27, 2013 at 09:12 UTC
    I appreciate the link, I'll check it out, thanks!