Help for this page

Select Code to Download


  1. or download this
        my $sql = q{select * from accountaction where action_date > ?};
        my $sth = $dbh->prepare($sql);
        $sth->execute('01-01-2006');
        $sth->finish;
    
  2. or download this
        my $sql = q{select * from accountaction where action_date > '01-01
    +-2006'};
        my $sth = $dbh->prepare($sql);
        $sth->execute();
        $sth->finish;
    
  3. or download this
        my $sql = q{select * from accountaction where action_date > ?};
        my $sth = $dbh->prepare($sql);
        $sth->execute('2006-01-01');
        $sth->finish;