Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do i force cake to update a field and not insert a new record. It should fail if the id does not exist in the db I found to force a insertion i can do 'updated' => false so if i do 'updated' => true will it work

share|improve this question

3 Answers

If you want to just update a field, use the saveField method of the model

$this->Order->id    = $id;
$this->Order->saveField('status', 'VOID');

Reference : http://book.cakephp.org/view/1031/Saving-Your-Data

share|improve this answer
what is Order::STATUS_VOID – Web Developer Sep 5 '11 at 7:21
That's just a static property in the class. Same as using 'Void' in there – JohnP Sep 5 '11 at 12:38
//Create: id isn't set or is null
$this->Recipe->create();
$this->Recipe->save($this->data);

//Update: id is set to a numerical value 


$this->Recipe->id = 2;
$this->Recipe->save($this->data);

see http://book.cakephp.org/view/1031/Saving-Your-Data

share|improve this answer
so if the id doe not exist in db it will be rejected and will not insert a new record – Web Developer Mar 5 '11 at 7:20
I believe that is the case, but i'm not 100% positive, easy to find out ;) – Orbit Mar 5 '11 at 7:22

You should take a look at the model->set() method, here With this method, you actually pass in an existing id. If there is no such id you get an appropriate return value.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.