home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / ext / ODBM_File / ODBM_File.pm < prev    next >
Text File  |  2000-01-23  |  391b  |  34 lines

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