home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _d393738f12b186ad7fec3190ea7c59f6 < prev    next >
Text File  |  2000-03-15  |  425b  |  34 lines

  1. package SDBM_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 'SDBM_File', $VERSION;
  12.  
  13. 1;
  14.  
  15. __END__
  16.  
  17. =head1 NAME
  18.  
  19. SDBM_File - Tied access to sdbm files
  20.  
  21. =head1 SYNOPSIS
  22.  
  23.  use SDBM_File;
  24.  
  25.  tie(%h, 'SDBM_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.