Is it possible to update existing data and save new data at the same time without having to loop through the array? I would like the array with the id to update and the array without an id to create a new entry. See the example below. Thank you for your help.

[Workload] => Array
    (
        [0] => Array
            (
                [phase_count] => 1
                [id] => 17
                [value] => {"phases":[{"rep_range":"20-30","rep_set_count":"1"}]}
                [user_id] => 1
            )

        [4] => Array
            (
                [phase_count] => 1
                [value] => {"phases":[{"rep_range":"20-30","rep_set_count":"1"}]}
                [user_id] => 1
            )
);

and then this

$this->Workload->saveAll($this->data['Workload']);

EDIT ======================================

Here is the code that actually saves this array

   if($this->data){
        array_walk($this->data['Workload'], function (&$value,$index){
            // This will need to be changed once users are setup
            if(empty($value['user_id'])){
                $value['user_id'] = 1;
            }
            $value['value'] = json_encode($value['value']);
        });
        debug($this->data);
        $this->Workload->saveAll($this->data['Workload']);
link|improve this question

good question. Why don't you try it and see? – Anh Pham Nov 10 '11 at 18:31
I did but it is not saving. – styks1987 Nov 10 '11 at 21:53
feedback

1 Answer

up vote 2 down vote accepted

In fact, I do exactly that in one of my apps. If there is no 'id' a table entry will be created. If the 'id' is specified, the record will be updated.

link|improve this answer
Do you have to loop through each one? For some reason it is not saving for me. I may have a problem elsewhere. – styks1987 Nov 10 '11 at 21:52
I found the problem. Turns out I was not specifying a category id which in turn did not display the data. I checked the database directly and found my missing data. Thanks! – styks1987 Nov 10 '11 at 22:03
feedback

Your Answer

 
or
required, but never shown

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