public
Description: A suite of tools (read as: ActiveTable) for easily making data objects to represent your model data.
Homepage: http://elsa.godless-internets.org/aphp
Clone URL: git://github.com/OwlManAtt/activephp.git
Click here to lend your support to: activephp and make a donation at www.pledgie.com !
OwlManAtt (author)
Sat Jul 04 23:55:52 -0700 2009
commit  914d5a3978b30485208b5d264653b40f4284e203
tree    a59738a66d46d2aabc65775a71019680731cd8e0
parent  ad97365fdc2c9897eecae8f9da4ac8153a286b27
activephp / csvio
name age message
..
file README Loading commit data...
file csvio.class.php
csvio/README
===========================================
===========================================
====       README for CSV IO           ====
===========================================
===========================================
=== Author:    OwlManAtt                ===
=== Updated:   2007-06-14               ===
===========================================

== Overview ==
CSVI/O is a class that allows one to move data between databases, spreadsheets, and other applications that understand 
the CSV format.

Comma-seperated value files are becoming increasingly popular for simple tasks. XML is nice, but it is too large a 
hammer for certain nails.

CSVI/O utilizes the power of ActiveTable, another component in the ActivePHP Suite, to do it's database read/write 
operations. Any database engine that ActiveTable supports can be used as a storage engine or datasource for CSVIO.

== Requirements ==
CSVIO requires the following:

* PHP 5 (5.1 preferred)
    * PEAR and the PEAR::DB package.
* APHP's ActiveTable.
* A RDBMS supported by ActiveTable.
* A database table to store your CSV's data in.

== Use ==
Please see the docs/ folder for examples.