3rd Party (Maintained by Koozali) git repo for perl-Tie-Array-CSV smeserver
Go to file
2024-03-24 17:44:24 -04:00
.gitattributes lfs/readme 2024-03-24 17:44:24 -04:00
.gitignore initial commit of file from CVS for perl-Tie-Array-CSV on Sun Mar 24 22:29:26 AEDT 2024 2024-03-24 22:29:26 +11:00
contriborbase initial commit of file from CVS for perl-Tie-Array-CSV on Sun Mar 24 22:29:26 AEDT 2024 2024-03-24 22:29:26 +11:00
LICENSE Initial commit 2024-03-24 12:29:18 +01:00
Makefile add Makelfile 2024-03-25 08:01:32 +11:00
perl-Tie-Array-CSV.spec initial commit of file from CVS for perl-Tie-Array-CSV on Sun Mar 24 22:29:26 AEDT 2024 2024-03-24 22:29:26 +11:00
README.md lfs/readme 2024-03-24 17:44:24 -04:00
Tie-Array-CSV-0.08.tar.gz lfs/readme 2024-03-24 17:44:24 -04:00

perl-Tie-Array-CSV

SMEServer Koozali local git repo for perl-Tie-Array-CSV smeserver

Documentation


https://metacpan.org/pod/Tie::Array::CSV

Description

This module allows an array to be tied to a CSV file for reading and writing. The array is a standard Perl 2D array (i.e. an array of array references) which gives access to the row and column of the user's choosing. This is done using the well established modules:

Tie::File

    arbitrary line access

    low memory use even for large files

Text::CSV

    row parsing

    row updating

    uses the speedy Text::CSV_XS if installed

This module was inspired by Tie::CSV_File which (sadly) hasn't been maintained. It also doesn't attempt to do any of the parsing (as that module did), but rather passes all of the heavy lifting to other modules.

Note that while the Tie::File prevents the need to read in the entire file, while in use, a parsed row IS held in memory.