Help for this page

Select Code to Download


  1. or download this
    +----+----------+----------+-------+-----------------+
    | id | nickname | password | socks | favorite_number |
    ...
    |  1 | Cowlick  | salty    |     0 |               4 |
    |  2 | andy     | bandy    |     3 |               7 |
    +----+----------+----------+-------+-----------------+
    
  2. or download this
    #!/usr/bin/perl -w
    use warnings;
    ...
    }
    
    $dbh->disconnect();
    
  3. or download this
    my $sth = $dbh->prepare( qq/select * from users/);
    
  4. or download this
    my $sth = $dbh->prepare( qq/select id, password from users where nickn
    +ame = '$input_nickname'/);