Freezer has asked for the wisdom of the Perl Monks concerning the following question:
my $sth_Count_Ref_vs_Comp = $dbh_B->prepare($sql_count_A_Ref_vs_ +Comp) or die "Cannot prepare: " . $dbh_B->errstr(); $sth_Count_Ref_vs_Comp->execute() or die "$sth_Count_Ref_vs_Comp +->errstr\n"; my $sth_Count_Ref_vs_Comp_B = $dbh_B->prepare($sql_count_A_Ref_v +s_Comp_B) or die "Cannot prepare: " . $dbh_B->errstr(); $sth_Count_Ref_vs_Comp_B->execute() or die "$sth_Count_Ref_vs_Co +mp_B->errstr\n"; my $sth_Count_Ref_vs_Comp_C = $dbh_B->prepare($sql_count_A_Ref_v +s_Comp_C) or die "Cannot prepare: " . $dbh_B->errstr(); $sth_Count_Ref_vs_Comp_C->execute() or die "$sth_Count_Ref_vs_Co +mp_C->errstr\n"; my $sth_Count_Ref_vs_Comp_D = $dbh_B->prepare($sql_count_A_Ref_v +s_Comp_D) or die "Cannot prepare: " . $dbh_B->errstr(); $sth_Count_Ref_vs_Comp_D->execute() or die "$sth_Count_Ref_vs_Co +mp_D->errstr\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Combining variables to create a single virtual variable
by davido (Cardinal) on Sep 21, 2012 at 08:18 UTC | |
by Freezer (Sexton) on Sep 21, 2012 at 09:15 UTC | |
|
Re: Combining variables to create a single virtual variable
by Athanasius (Archbishop) on Sep 21, 2012 at 08:23 UTC | |
|
Re: Combining variables to create a single virtual variable
by locked_user sundialsvc4 (Abbot) on Sep 21, 2012 at 12:59 UTC |