home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
perl-5.003-bin.lha
/
lib
/
perl5
/
NDBM_File.pm
< prev
next >
Wrap
Text File
|
1996-10-09
|
437b
|
40 lines
package NDBM_File;
BEGIN {
if ($] >= 5.002) {
use strict;
}
}
use vars qw($VERSION @ISA);
require Tie::Hash;
require DynaLoader;
@ISA = qw(Tie::Hash DynaLoader);
$VERSION = "1.00";
bootstrap NDBM_File $VERSION;
1;
__END__
=head1 NAME
NDBM_File - Tied access to ndbm files
=head1 SYNOPSIS
use NDBM_File;
tie(%h,NDBM_File,'Op.dbmx', O_RDWR|O_CREAT, 0640);
untie %h;
=head1 DESCRIPTION
See L<perlfunc/tie>
=cut