Yeah, this works fine :-) -- Jan
Jan Pieper wrote:$article->findDependentRowset('Author'); But the result is an Exception :( Zend_Db_Table_Exception: No reference from table Author to table ArticleIn you example, a foreign key in Article references a primary key in Author. So Author is the "parent", Article is the "dependent". You are querying the reverse relationship, which does not exist in this example. Use this: $article->findParentRow('Author'); Regards, Bill Karwin
