Help for this page

Select Code to Download


  1. or download this
    my $h = TheDb::PlainText->new();
    
  2. or download this
    package TheDB::PlainText;
    @ISA = 'TheDb';
    ...
    # more stuff
    
    1;
    
  3. or download this
    package TheDb;
    # usual stuff
    ...
      # Whatever initializations
      return bless($self, $class);
    }