Help for this page

Select Code to Download


  1. or download this
    package Database;
    
    use strict;
    ...
    }
    
    1;
    
  2. or download this
    #!/usr/bin/perl -w
    
    use strict;
    ...
    my $user = $dbh->selectrow_array("select NAME from USER where ID=?", u
    +ndef, $userid);
    
    print "name of the user: $user!";