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 >
Wrap
Text File
|
2000-03-15
|
425b
|
34 lines
package SDBM_File;
use strict;
require Tie::Hash;
use XSLoader ();
our @ISA = qw(Tie::Hash);
our $VERSION = "1.02" ;
XSLoader::load 'SDBM_File', $VERSION;
1;
__END__
=head1 NAME
SDBM_File - Tied access to sdbm files
=head1 SYNOPSIS
use SDBM_File;
tie(%h, 'SDBM_File', 'Op.dbmx', O_RDWR|O_CREAT, 0640);
untie %h;
=head1 DESCRIPTION
See L<perlfunc/tie>, L<perldbmfilter>
=cut