- or download this
my $connection = DBI->connect('dbi:Oracle:xxxxx','xxxxx','xxxxx',{
AutoCommit => 0,
...
PrintError => 1,
})
|| die "Database connection not made: $DBI::errstr";
- or download this
my $stmt1 = "select *
from final_data_set_blu_ray
order by weekend_date";
- or download this
$query1 = $connection->prepare($stmt1);
- or download this
$query1->execute() or die $connection->errstr;
- or download this
my $a_row = $query1->fetchall_arrayref();
- or download this
$rng = $xlBook->ActiveSheet->Range("A1:C7");
$rng->{Value} = $mydata;
- or download this
$tbl = $xlBook->ActiveSheet->PivotTableWizard(1, $rng, "", "MyPivotTab
+le");