In situations where I have auxiliary and/or errata tables (basically a
1-1 relationship), I would look into peering to those rows via the
findParentRow($parentTable) method rather than finding as a DependentRowset.
http://framework.zend.com/manual/en/zend.db.table.relationships.html#zend.db.table.relationships.fetching.parent
It is modeled effectively the same way, but you are using a different
approach for finding the actual Row.
Let me know if that helps!
-ralph
Now I have it working for the websites and keywords but cannot get the
isp_partners_aux to work. The issue seems to be that when I do the
findDependantRowset it does not get any data from the isp_partners_aux
table, rather it only contains the data from the isp_partners table.
There is only 1 row in each table that will match. The aux table is
just an external table that holds data about isp_partners such as the
username, etc. Below is my controller followed by my model classes and
then the output.