Welcome Guest, Not a member yet? Register   Sign In
Can't update primary key
#2

here in your model - your update method

PHP Code:
// update data
    
function update($id$data)
    {    
    
$this->db->update($this->table$data);
    } 

you are passing $id and $data to update method...
but then you aren't using the $id
so then the database does not know which record you want to update

so you want a line in the method before the update line, like
PHP Code:
$this->db->where('nis'$id); 
Reply


Messages In This Thread
Can't update primary key - by uglyaditya - 11-07-2016, 08:39 PM
RE: Can't update primary key - by cartalot - 11-08-2016, 04:16 PM
RE: Can't update primary key - by uglyaditya - 11-08-2016, 05:28 PM
RE: Can't update primary key - by KimZ - 11-09-2016, 09:20 AM
RE: Can't update primary key - by uglyaditya - 11-25-2016, 01:48 AM



Theme © iAndrew 2016 - Forum software by © MyBB