updateAll()
does not automatically wrap string values in quotes unlike when using save()
. You have to do this yourself. From the docs:-
Literal values should be quoted manually using DboSource::value().
You need to wrap each string value in $this->request->data
with quotes using something like the datasource's value()
method before calling updateAll()
:-
$db = $this->getDataSource();
$value = $db->value($value, 'string');
It is advisable to not just pass $this->request->data
to updateAll()
anyway as someone could inject data into your database. Instead build a new array of save data from your request data and wrap strings as appropriate. For example:-
$user=$this->request->data[User]
$data = array(
'username' => $db->value($user['username'], 'string'),
'password' => $db->value($user['password'], 'string'),
'email' => $db->value($user['email'], 'string'),
'phone' => $db->value($user['phone'], 'string'),
'address' => $db->value($user['address'], 'string'),
'location' => $db->value($user['location'], 'string'),
'pincode' => $db->value($user['pincode'], 'integer')
);
$this->User->updateAll($data, array("User.id" => $v));
Update
As an alternative to using updateAll()
you would be better to use save()
for what you are doing here. As long as your save data contains the record's primary key (e.g. User.id
) it will perform an UPDATE
rather than an INSERT
:-
$this->request->data['User']['id'] = $v;
$this->User->save($this->request->data);
save()
will handle all the strings for you so there is no need for wrapping them in quotes yourself.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…