Help for this page

Select Code to Download


  1. or download this
                    SELECT animal
                    FROM animals
                    WHERE size = 'Big'
    
  2. or download this
    my $sth = $dbh->prepare(qq{
                    SELECT animal
                    FROM animals
    ...
                    });
    
    $sth->execute('Big') or die "Cannot execute: " . $sth->errstr();