codeigniter - Get ID of newly created document -
i working mongodb , codeigniter (and alex bilbies mongodb library) , wondering. there way id of post create below directly after?
$this->ci->mongo_db->insert('oauth_sessions', array('client_id' => $client_id, 'redirect_uri' => $redirect_uri, 'user_id' => $user_id, 'code' => $code, 'first_requested' => time(), 'last_updated' => time()));
thankful input!
you should able ci standard db function insert_id().
so directly after insert call
do
$ilastinsertedid=$this->ci->mongo_db->insert_id();
Comments
Post a Comment