in reply to Impact of module size
Are there any other ways of refactoring SQL-heavy code like this?
There are at least two other approaches to consider:
my $username = $sqldbh->fetch_one_value( table=>'USERS', columns=>'USE +R_NAME', criteria=> { 'USER_ID' => $userid } );
|
|---|