Help for this page

Select Code to Download


  1. or download this
        while(my $trade = $trdstmt->fetchrow_hashref()) {
            print Dumper $trade;
            &$action(%$trade);
            $count++;
        }
    
  2. or download this
        $trdstmt->bind_param(1,$self->{'startdate'}) or die "Bind failed: 
    +$DBI::errstr";
        $trdstmt->bind_param(2,$self->{'enddate'}) or die "Bind failed: $D
    +BI::errstr";
        $trdstmt->execute() or die "Execute: $DBI::errstr";