home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / perl-5.003-base.tgz / perl-5.003-base.tar / fsf / perl / ext / ODBM_File / ODBM_File.pm < prev    next >
Text File  |  1996-02-14  |  396b  |  36 lines

  1. package ODBM_File;
  2.  
  3. use strict;
  4. use vars qw($VERSION @ISA);
  5.  
  6. require Tie::Hash;
  7. require DynaLoader;
  8.  
  9. @ISA = qw(Tie::Hash DynaLoader);
  10.  
  11. $VERSION = "1.00";
  12.  
  13. bootstrap ODBM_File $VERSION;
  14.  
  15. 1;
  16.  
  17. __END__
  18.  
  19. =head1 NAME
  20.  
  21. ODBM_File - Tied access to odbm files
  22.  
  23. =head1 SYNOPSIS
  24.  
  25.  use ODBM_File;
  26.  
  27.  tie(%h,ODBM_File,'Op.dbmx', O_RDWR|O_CREAT, 0640);
  28.  
  29.  untie %h;
  30.  
  31. =head1 DESCRIPTION
  32.  
  33. See L<perlfunc/tie>
  34.  
  35. =cut
  36.