Re: hasOne issues

2007-05-09 Thread John David Anderson (_psychic_)
On May 9, 2007, at 11:53 AM, uolax wrote: This is driving me crazy, I've tried every possible setup in the model and tables and nothing seems to work. Please Please help. I have 2 tables, bopps - id name desc instit_id instits --- id name Given this setup, Bopp

Re: hasOne issues

2007-05-09 Thread uolax
Thanks John. I guess because I'm mainly working with the Bopp, i wanted other data to belong to it. I guess it's just the way I'm thinking about models and relations. Thanks again for making my day easier. On May 9, 11:01 am, John David Anderson (_psychic_) [EMAIL PROTECTED] wrote: On May 9,

Re: hasOne issues

2007-05-09 Thread uolax
Now both models are going in loops referencing themselves: bopp.php var $belongsTo = array('Instit' = array('className' = 'Instit') ); } instit.php var $hasOne = array('Bopp' = array('className' = 'Bopp',

Re: hasOne issues

2007-05-09 Thread John David Anderson (_psychic_)
I don't see anything wrong, unless you've set your recursive values high for your find calls. This setup is normal. Bopp belongsTo Instit and Instit hasOne Bopp That allows you get get data from the other model, no matter which you're using. Are you getting an error or some long queries or