Help for this page

Select Code to Download


  1. or download this
    INSERT INTO housing 
       (reg_id, nights, parking, room_size, roommate, gender)
    ...
         'Kerrie',
         ''
       );
    
  2. or download this
    #!/usr/bin/perl -w
    # t/23_RegistrantNeeds.t 
    ...
                "RegID $reg_id: insert new row into housing table."
             );
    }
    
  3. or download this
    sub insert_housing {
      my $self = shift;
    ...
         into housing table.");
      return 1;
    }