Welcome Guest, Not a member yet? Register   Sign In
insert_id not working
#12

[eluser]Aken[/eluser]
[quote author="Fred Riley" date="1359107068"]I do call insert_id() after the insert operation, in a view after the controller to add a new user record is run.[/quote]

1) Don't call stuff like this in the view. Your controllers and models work the logic, then send it to the views for display only.

2) When I say after, I mean immediately after. E.g.:

Code:
$this->db->insert('table', $data);
$id = $this->db->insert_id();

If you don't do that, you run the risk of something else changing the result.

[quote author="Fred Riley" date="1359107068"]The call to insert_id() worked fine in a previous application I developed in CI 1.7, identical code, which is why I was so surprised that it falls over in my latest app. The user table being inserted into does have an auto-increment primary key.[/quote]

Considering how different 2.1.3 is from 1.7.x, you can't rely on everything being exactly the same.


Messages In This Thread
insert_id not working - by El Forum - 01-24-2013, 03:45 PM
insert_id not working - by El Forum - 01-24-2013, 04:44 PM
insert_id not working - by El Forum - 01-24-2013, 05:07 PM
insert_id not working - by El Forum - 01-24-2013, 08:39 PM
insert_id not working - by El Forum - 01-24-2013, 10:53 PM
insert_id not working - by El Forum - 01-24-2013, 11:00 PM
insert_id not working - by El Forum - 01-24-2013, 11:03 PM
insert_id not working - by El Forum - 01-24-2013, 11:44 PM
insert_id not working - by El Forum - 01-25-2013, 01:24 AM
insert_id not working - by El Forum - 01-25-2013, 02:33 AM
insert_id not working - by El Forum - 01-25-2013, 02:44 AM
insert_id not working - by El Forum - 01-25-2013, 03:14 AM
insert_id not working - by El Forum - 01-25-2013, 09:59 AM
insert_id not working - by El Forum - 01-25-2013, 11:35 PM
insert_id not working - by El Forum - 01-28-2013, 03:03 PM
insert_id not working - by El Forum - 01-28-2013, 03:08 PM
insert_id not working - by El Forum - 01-28-2013, 06:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB