Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual

后端 未结 1 778
一整个雨季
一整个雨季 2020-12-11 14:16

Error: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL serve

相关标签:
1条回答
  • 2020-12-11 14:48

    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.

    0 讨论(0)
提交回复
热议问题