Help for this page

Select Code to Download


  1. or download this
    #!/usr/lib/perl
    use DBI;
    ...
    print FH1 $tb;
    close FH1;
    print "Congratulations, report file has been saved as $output_file";
    
  2. or download this
    NAME    Age      Department
    ------- -------  -------   
    ...
            28 years           
                     HR
    
  3. or download this
    if($Employee{"Name"} && $Employee{"Age"} && $Employee{"Dept"}){
                 $tb->load([$Employee{"Name"},$Employee{"Age"},$Employee{"
    +Dept"}]);
                 undef %Employee;
             }