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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -