1package SDBM_File; 2 3use strict; 4 5require Tie::Hash; 6use XSLoader (); 7 8our @ISA = qw(Tie::Hash); 9our $VERSION = "1.02" ; 10 11XSLoader::load 'SDBM_File', $VERSION; 12 131; 14 15__END__ 16 17=head1 NAME 18 19SDBM_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 31See L<perlfunc/tie>, L<perldbmfilter> 32 33=cut 34