Back again. I'm in trouble.
I still dont make it. May someone guide me?

My Controller
====================
class ArosAcosController extends AppController {

       var $name = 'aros_acos';

       function index() {
               $this->ArosAcos->recursive = -1;
               $this->set('aros_acos', $this->ArosAcos->find('all'));
       }
}
===================

MyModel
===================
<?php
class ArosAcos extends AppModel {
       var $name = 'ArosAcos';
       $options['joins'] = array(
                                       array('table' => 'aros_acos',
                                               'alias' => 'ArosAcos',
                                               'type' => 'INNER',
                                               'conditions' => array(
                                               'ArosAcos.acos_id = acos.id',
                                               )
                                       ));
}
?>
===================


It gives me error :
Call to undefined method stdClass::find() in
D:\_\www\bread\app\controllers\aros_acos_controller.php on line 8

-- 
Regards,,,
mastanto
http://www.mastanto.com
http://thom-sharing.blogspot.com

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to