hello,
Is there an easy way to get the LastInsertId in my model?
I’m trying to use this value in an afterSave() method of a model.
Thanks,
–iM
hello,
Is there an easy way to get the LastInsertId in my model?
I’m trying to use this value in an afterSave() method of a model.
Thanks,
–iM
FOUND IT!
Yii::app()->db->getLastInsertId();
thanks,
–iM
Just $model->id wouldn’t work?
After the save the pk value of the model will be updated.
I’m trying to create and abstract class so the primary key can be anything (not neceserily called id)
–iM
getPrimaryKey() should be enough?
that’s it. thanks.
–iM
Sorry, didn’t know about it.