PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Database » DB_Table » Bug #2160

Different Tables in one class definition

Details

Request #2160Different Tables in one class definition
Submitted2004-08-19 07:31 UTC
Frommichael dot klink at no-limits dot net
Assignedpmjones
StatusBogus
PackageDB_Table
PHP Version5.0.0RC3 (Release Candidate 3)
Roadmaps(Not assigned)

Comments

[2004-08-19 07:31 UTC] michael dot klink at no-limits dot net

Description:
------------
Ist it possible to use more than one table in the definition class?

e.g.

class example extends DB_Table {
$var table = array(
name => "table1",
$col = array(...
name => "table2",
$col = array(...
);

It would easier to handle as on seperate config class for every table.