DBM_Filter::null - filter for DBM_Filter

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR NAME DBM_Filter::null - filter for DBM_Filter SYNOPSIS use SDBM_File; # or DB_File, GDBM_File, NDBM_File, or ODBM_File use DBM_Filter ; $db = tie %hash, ... $db->Filter_Push('null'); DESCRIPTION This filter ensures that all data written to the DBM file is null terminated. This is useful when you have a perl script that needs to interoperate with a DBM file that a C program also uses. A fairly common issue is for the C application to include the t

DBM_Filter::int32 - filter for DBM_Filter

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR NAME DBM_Filter::int32 - filter for DBM_Filter SYNOPSIS use SDBM_File; # or DB_File, GDBM_File, NDBM_File, or ODBM_File use DBM_Filter ; $db = tie %hash, ... $db->Filter_Push('int32'); DESCRIPTION This DBM filter is used when interoperating with a C/C++ application that uses a C int as either the key and/or value in the DBM file. SEE ALSO DBM_Filter, perldbmfilter AUTHOR Paul Marquess pmqs@cpan.org

DBM_Filter::encode - filter for DBM_Filter

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR NAME DBM_Filter::encode - filter for DBM_Filter SYNOPSIS use SDBM_File; # or DB_File, GDBM_File, NDBM_File, ODBM_File use DBM_Filter ; $db = tie %hash, ... $db->Filter_Push('encode' => 'iso-8859-16'); DESCRIPTION This DBM filter allows you to choose the character encoding will be store in the DBM file. The usage is $db->Filter_Push('encode' => ENCODING); where "ENCODING" must be a valid encoding name that the Encode module recognises. A

DBM_Filter::compress - filter for DBM_Filter

NAME SYNOPSIS DESCRIPTION SEE ALSO AUTHOR NAME DBM_Filter::compress - filter for DBM_Filter SYNOPSIS use SDBM_File; # or DB_File, GDBM_File, NDBM_File, ODBM_File use DBM_Filter ; $db = tie %hash, ... $db->Filter_Push('compress'); DESCRIPTION This DBM filter will compress all data before it is written to the database and uncompressed it on reading. A fatal error will be thrown if the Compress::Zlib module is not available. SEE ALSO DBM_Filter, perldbmfilter, Compress::Zlib AUTHOR Paul Mar

DBM_Filter -- Filter DBM keys/values

NAME SYNOPSIS DESCRIPTION What is a DBM Filter?So what's new? METHODS$db->Filter_Push() / $db->Filter_Key_Push() / $db->Filter_Value_Push() $db->Filter_Pop() $db->Filtered() Writing a FilterImmediate Filters Canned Filters Filters Included NOTESMaintain Round Trip Integrity Don't mix filtered & non-filtered data in the same database file. EXAMPLE SEE ALSO AUTHOR NAME DBM_Filter -- Filter DBM keys/values SYNOPSIS use DBM_Filter ; use SDBM_File; # or DB_File, GDBM_File

dbmopen

dbmopen HASH,DBNAME,MASK [This function has been largely superseded by the tie function.] This binds a dbm(3), ndbm(3), sdbm(3), gdbm(3), or Berkeley DB file to a hash. HASH is the name of the hash. (Unlike normal open, the first argument is not a filehandle, even though it looks like one). DBNAME is the name of the database (without the .dir or .pag extension if any). If the database does not exist, it is created with protection specified by MASK (as modified by the umask). To prevent creation

dbmclose

dbmclose HASH [This function has been largely superseded by the untie function.] Breaks the binding between a DBM file and a hash. Portability issues: dbmclose in perlport.

DB - programmatic interface to the Perl debugging API

NAME SYNOPSIS DESCRIPTIONGlobal Variables API Methods Client Callback Methods BUGS AUTHOR NAME DB - programmatic interface to the Perl debugging API SYNOPSIS package CLIENT; use DB; @ISA = qw(DB); # these (inherited) methods can be called by the client CLIENT->register() # register a client package name CLIENT->done() # de-register from the debugging API CLIENT->skippkg('hide::hide') # ask DB not to stop in this package CLIENT->cont([WHERE]) # run some mor

Data::Dumper - stringified perl data structures, suitable for both printing and eval

NAME SYNOPSIS DESCRIPTIONMethods Functions Configuration Variables or Methods Exports EXAMPLES BUGSNOTE AUTHOR VERSION SEE ALSO NAME Data::Dumper - stringified perl data structures, suitable for both printing and eval SYNOPSIS use Data::Dumper; # simple procedural interface print Dumper($foo, $bar); # extended usage with names print Data::Dumper->Dump([$foo, $bar], [qw(foo *ary)]); # configuration variables { local $Data::Dumper::Purity = 1; eval Data::Dumper->Dump([$foo, $bar

Cwd - get pathname of current working directory

NAME SYNOPSIS DESCRIPTIONgetcwd and friends abs_path and friends $ENV{PWD} NOTES AUTHOR COPYRIGHT SEE ALSO NAME Cwd - get pathname of current working directory SYNOPSIS use Cwd; my $dir = getcwd; use Cwd 'abs_path'; my $abs_path = abs_path($file); DESCRIPTION This module provides functions for determining the pathname of the current working directory. It is recommended that getcwd (or another *cwd() function) be used in all code to ensure portability. By default, it exports the functions