2004-08-23 22:59:39 +02:00
|
|
|
PEAR::DB_DataObject performs 2 tasks:
|
2005-03-03 22:07:10 +01:00
|
|
|
1. Builds SQL statements based on the objects vars and the builder methods.
|
2004-08-23 22:59:39 +02:00
|
|
|
2. acts as a datastore for a table row.
|
2005-03-03 22:07:10 +01:00
|
|
|
The core class is designed to be extended for each of your tables so that you
|
|
|
|
put the data logic inside the data classes.
|
|
|
|
included is a Generator to make your configuration files and your base classes.
|
2004-08-23 22:59:39 +02:00
|
|
|
|
2005-03-03 22:07:10 +01:00
|
|
|
WWW: http://pear.php.net/package/DB_DataObject/
|