Help for this page

Select Code to Download


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