in reply to
Re^2: optimization help
in thread optimization help
Agreed. It was an eval BLOCK so it happened at compiled-time. I just didn't (and still don't) see any advantage other than aggregating fatal errors checking, such as
my $dbh = get_db(); # with RaiseError => 1
eval {
my $some_sql = get_some_sql_code();
$dbh->do($some_sql);
my $another_sql = get_another_sql_code();
$dbh->do($another_sql);
... more query execution
};
die $@ if $@;
Open source softwares? Share and enjoy. Make profit from them if you can. Yet, share and enjoy!