- or download this
### grabbing every column
my $dbCommand = qq^select ^;
...
$dbCommand .= "$_,";
}
$dbCommand =~ s/,$//;
- or download this
my $dbCommand = 'select '.join ',',@ticketsFields;
- or download this
my @newArray = @{$rows};
- or download this
for(my $x = 0; $x < $ticketsFieldsSize; $x++)
{
...
$GenericData{$ticketsFields[$x]} = $newArray[$x];
}
- or download this
@GenericData{@ticketsFields} = @$rows;
- or download this
\@ticketsRecords;
}