The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "Tie::"

Tie::FS - Read and write files using a tied hash River stage zero No dependents

This module ties a hash to a directory in the filesystem. If no directory is specified in the $dir parameter, then "." (the current directory) is assumed. The $flag parameter defaults to the "Create" flag. The following (case-insensitive) access flag...

DEVEN/Tie-FS-0.1.0 - 28 Jun 2011 06:45:33 UTC - Search in distribution

Tie::TZ - tied $TZ setting %ENV and calling tzset() River stage one • 2 direct dependents • 2 total dependents

"Tie::TZ" provides a tied $TZ variable which gets and sets the TZ environment variable $ENV{'TZ'}. When it changes %ENV, it calls "tzset()" (see POSIX) if available, ensuring the C library notices the change for subsequent "localtime()" etc. $TZ = 'G...

KRYDE/Tie-TZ-11 - 13 Aug 2020 08:44:28 UTC - Search in distribution

Pad::Tie - tie an object to lexical contexts River stage zero No dependents

Pad::Tie lets you use your objects' methods as though they were lexical variables. Alternately, it lets you use lexical variables to refer to your bound object methods. It's all a matter of perspective. Creating a Pad::Tie object requires an object (...

HDP/Pad-Tie-0.006 - 26 Apr 2007 17:52:28 UTC - Search in distribution

Tie::CHI - Tied hash to persistent CHI cache River stage zero No dependents

Tie::CHI implements a tied hash connected to a CHI cache. It can be used with any of CHI's backends (File, Memcached, DBI, etc.) Usage is one of the following: tie %cache, 'Tie::CHI', $hash_of_chi_options; tie %cache, 'Tie::CHI', $existing_chi_cache;...

JSWARTZ/Tie-CHI-0.02 - 07 Nov 2011 04:32:46 UTC - Search in distribution

Tie::Cfg - Ties simple configuration (.ini) files to hashes. Handles arrays and recurrent sections. River stage zero No dependents

This module reads in a configuration file at 'tie' and writes it at 'untie'. You can use file locking to prevent others from accessing the configuration file, but this should only be used if the configuration file is used as a small data file to hold...

OESTERHOL/Tie-Cfg-0.32 - 25 Feb 2003 13:57:32 UTC - Search in distribution

Tie::Cvs - Perl extension to tie Hashes to CVS trees River stage zero No dependents

Use it normally, as any other tie. Complete deletion of a key Each time you call delete on a key, the current version will be deleted, and the value will roll back to the previous version in CVS. If there is no previous version, the file will be dele...

AMBS/Tie-Cvs-0.06 - 11 Oct 2015 14:09:47 UTC - Search in distribution

Tie::DBI - Tie hashes to DBI relational databases River stage one • 1 direct dependent • 2 total dependents

This module allows you to tie Perl associative arrays (hashes) to SQL databases using the DBI interface. The tied hash is associated with a table in a local or networked database. One column becomes the hash key. Each row of the table becomes an asso...

TODDR/Tie-DBI-1.08 - 19 Jan 2020 03:37:25 UTC - Search in distribution
  • Tie::RDBM - Tie hashes to relational databases

Tie::DNS - Tie interface to Net::DNS River stage two • 1 direct dependent • 14 total dependents

Net::DNS is a very complete, extensive and well-written module. It's completeness, however, makes many comman cases uses a bit wordy, code-wise. Tie::DNS is meant to make common DNS operations trivial, and more complex DNS operations easier....

DIEDERICH/Tie-DNS-1.151560 - 05 Jun 2015 03:35:27 UTC - Search in distribution

Tie::Dir - class definition for reading directories via a tied hash River stage zero No dependents

This module provides a method of reading directories using a hash. The keys of the hash are the directory entries and the values are a reference to an array which holds the result of "stat" being called on the entry. The access and modification times...

GBARR/Tie-Dir-1.02 - 26 Apr 1996 13:24:56 UTC - Search in distribution

Tie::FTP - A module to open files on FTP servers as filehandles River stage zero No dependents

This module downloads a file on an FTP server into a temporary file, and allows editing on that. Upon destroy the object rewrites itself to the server if there were any write operations....

IVORW/Tie-FTP-0.02 - 16 Sep 2006 11:08:47 UTC - Search in distribution

Tie::JCR - A tied hash interface for Java::JCR::Node River stage zero No dependents

This provides a very simple, read-only interface to a node from Java::JCR. Each key represents the names of items within the node. Each value is either a scalar for non-multiple child properties, an array for multiple child properties, or nested hash...

HANENKAMP/Tie-JCR-0.02 - 21 Sep 2007 02:39:31 UTC - Search in distribution

Tie::Sub - Tying a subroutine, function or method to a hash River stage one • 1 direct dependent • 3 total dependents

Subroutines don't have interpreted into strings. The module ties a subroutine to a hash. The subroutine is executed at fetch hash. At long last this is the same, only the notation is shorter. Alternative to " ... ${\ subroutine('abc') } ... " # or " ...

STEFFENW/Tie-Sub-1.001 - 20 Aug 2012 05:37:26 UTC - Search in distribution

Date::Tie - ISO dates made easy River stage zero No dependents

Date::Tie is an attempt to simplify date operations syntax. It works with calendar dates (year-month-day), ordinal dates (year-day), week dates (year-week-day), times (hour:minute:second), decimal fractions (decimal hours, decimal minutes and decimal...

FGLOCK/Date-Tie-0.20 - 12 Feb 2009 19:32:32 UTC - Search in distribution

Tie::Anon - tie anonymous array, hash, etc. and return it River stage zero No dependents

When I feel extremely lazy, I don't want to write my $tied_arrayref = do { tie my @a, "Tie::File", "hoge.dat"; \@a; }; With Tie::Anon, you can do the same by my $tied_arrayref = tiea("Tie::File", "hoge.dat");...

TOSHIOITO/Tie-Anon-0.02 - 17 Aug 2014 01:37:12 UTC - Search in distribution

Tie::File - Access the lines of a disk file via a Perl array River stage three • 30 direct dependents • 100 total dependents

"Tie::File" represents a regular text file as a Perl array. Each element in the array corresponds to a record in the file. The first line of the file is element 0 of the array; the second line is element 1, and so on. The file is *not* loaded into me...

TODDR/Tie-File-1.07 - 20 Feb 2023 17:05:34 UTC - Search in distribution

Tie::Form - access a machine readable database file that minics a hardcopy form River stage zero No dependents

The "Tie::Form" module provides a text database file suitable for local data such as private mailing lists. The "Tie::Form" cannot provide a data warehouse shared by mulitple users. File format description Desireable goals for small local private dat...

SOFTDIA/Tie-Form-0.02 - 13 May 2004 12:39:32 UTC - Search in distribution

Tie::Gzip - read and write gzip compressed files River stage zero No dependents

The 'Tie::Gzip' module provides a file handle Tie for compressing and uncompressing files using the gzip compression format. By tieing a filehandle to 'Tie::Gzip' subsequent uses of the file subroutines with the tied filehandle will compress data wri...

SOFTDIA/Tie-Gzip-0.06 - 16 Apr 2004 20:38:48 UTC - Search in distribution

Tie::Judy - Perl extension for using a Judy array instead of a hash. River stage zero No dependents

EXPORT No exports....

BHOLZMAN/Tie-Judy-0.05 - 06 Mar 2009 21:09:32 UTC - Search in distribution

Tie::LDAP - Tie LDAP database to Perl hash. River stage zero No dependents

This library allows you to tie LDAP database to Perl hash. Once tied, all hash operation will cause corresponding LDAP operation, as you would (probably) expect. Referencing tied hash will return hash reference to named LDAP entry that holds lowercas...

TAIY/Tie-LDAP-0.06 - 30 Mar 2000 04:10:04 UTC - Search in distribution

Tie::Math - Hashes which represent mathematical functions. River stage zero No dependents

Defines hashes which represent mathematical functions, such as the fibonacci sequence, factorials, etc... Functions can be expressed in a manner which a math or physics student might find a bit more familiar. It also automatically employs memoization...

MSCHWERN/Tie-Math-0.10 - 15 Jul 2000 09:37:39 UTC - Search in distribution
1,376 results (0.065 seconds)