Help for this page

Select Code to Download


  1. or download this
    App::User->set_sql('getusers', 'select * from __TABLE__ where username
    + = ?');
    
  2. or download this
    my $sth = App::User->sql_getusers();
    $sth->execute('fred');
    my $hash = $sth->fetchall_hash();