RE: Not using a DB for data

2009-02-25 Thread Steven Wright
You have to over ride the _schema property as well. -Original Message- From: cake-php@googlegroups.com [mailto:cake-...@googlegroups.com] On Behalf Of Miles J Sent: Wednesday, February 25, 2009 3:53 PM To: CakePHP Subject: Re: Not using a DB for data Just do this in the controller

Re: Not using a DB for data

2009-02-25 Thread Miles J
Just do this in the controller: var $uses = NULL; --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send e

RE: Not using a DB for data

2009-02-25 Thread Steven Wright
; => 'Add outlet'); $data[]['Workorder'] = array('id' => '03', 'workorder' => 'Turn on HBO'); $data[]['Workorder'] = array('id' => '04', 'workorder' => '

Re: Not using a DB for data

2009-02-25 Thread brian
And the SQL error is ...? On Wed, Feb 25, 2009 at 10:49 AM, RhythmicDevil wrote: > > Hi, > I have a set of views in my app that will not be using a database. The > data will be coming from an web method. I believe I still need to use > a model to stay within MVC. So I have my model set up like t