- or download this
package Exported;
...
my ( $key ) = @_;
return $dbh->selectrow_hashref( ... )
}
- or download this
my $dbh = DBI->connect( ... );
set_dbh( $dbh );
my $answer = do_query( $key );
- or download this
package MyQuery;
...
my ( $self, $key ) = @_;
return $self->{dbh}->selectrow_hashref( ... );
}
- or download this
my $dbh = DBI->connect( ... );
my $query_obj = MyQuery->new( $dbh );
my $answer = $query_obj->do_query( $key );
- or download this
package Exported;
...
my ( $key ) = @_;
return $dbh->selectrow_hashref( ... );
}