I think you have a typo:
var $actAs = array('Containable');
should be
var $actsAs = array('Containable');
you forgot the 's'
On 6 jun, 21:09, Christopher Hanson <[email protected]> wrote:
> hey, i tried the following
>
> <?php
>
> class Invoice extends AppModel
> {
>
> var $name = 'Invoice';
> var $actAs = array('Containable');
> var $hasMany = array(
> 'InvoiceRows' => array(
> 'className' => 'InvoiceRows',
> 'foreignKey' => 'invoice_id',
> 'order' => 'InvoiceRows.delta ASC',
> ),
> );
> var $belongsTo = array(
> 'Client' => array(
> 'className' => 'Client',
> ),
> );
>
> }
>
> and
>
> <?php
>
> class InvoicesController extends AppController
> {
>
> var $name = 'Invoices';
>
> function index(){}
>
> function view($invoice_id)
> {
>
> $this->Invoice->contain('Country');
> $data = $this->Invoice->find('all');
> //$data = $this->Invoice->findById($invoice_id);
> debug($data);
> $this->set('client_data', $data);
>
> }
>
> }
>
> also even if i try contain(); it still comes back with this error
>
> *Warning* (512) <javascript:void(0);>:*SQL Error:* 1064: You have an error
> in your SQL syntax; check the manual that corresponds to your MySQL server
> version for the right syntax to use near 'contain' at line 1
> [*CORE\cake\libs\model\datasources\dbo_source.php*, line*673*]
>
> Chris
>
> --
> Best Regards Christopher Hanson
Check out the new CakePHP Questions site http://cakeqs.org and help others with
their CakePHP related questions.
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en