Help for this page

Select Code to Download


  1. or download this
    create table job_lists (
      job_list_id  bigint unsigned not null primary key auto_increment,
    ...
      foreign key fk_jobs_to_job_lists (job_list_id)
        references job_lists (job_list_id) on delete cascade
    ) engine=innodb charset=utf8;
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
      # Do your thing here...
    }# end process_job()