Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    use strict;
    ...
    ## do various other things, which get done in lots of
    ## other places too, using subroutines in dbmodule:
    Write_Bar;
    
  2. or download this
    package dbmodule;
    require Exporter;
    our @ISA = ("Exporter");
    ...
    our @EXPORT = qw/Write_Bar Insert_Into_BookingManager DBModule_Close/;
    
    1;