Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare(q{SELECT user_id from user where 
        user_id = ?});
    ...
    if( $sth->rows ) { 
        # do something here
    }
    
  2. or download this
    my ( $usr ) = $sth->fetchrow_array;