Help for this page

Select Code to Download


  1. or download this
    use StandardQueries;
    ...
     my $sth = $dbh->prepare(StandardQueries::get_username);
    ...
    # some code to get the username using the statement handle
    
  2. or download this
    use StandardQueries;
    ...
    my $username = $dbh->get_username($user_id);