I am using transactions in Magento. I need to use primeryKey of first insert query to all my subsequent queries.


    $model1->setfield1()
           ->setField2();
    $transaction->addObject($model1);
    $connection    = Mage::getSingleton('core/resource')->getConnection('core_read');
    $lastInsertId  = $connection->fetchOne('SELECT last_insert_id()'); // return 0
    $model2->setfield3($lastInsertId )
    $model3->setfield4($lastInsertId )
    $transaction->addObject($model2);
    $transaction->addObject($model3);

    $transaction-Save();
    $lastInsertId2  = $connection->fetchOne('SELECT last_insert_id()'); // returns correct result

how to get last inserted id before saving the transaction

link|improve this question

64% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I guess PDO (which magento uses) can't get last_inserted_id while transaction isn't commited yet. I guess you should either try plain sql like there or try use nested transactions.

link|improve this answer
How can I use nested transactions in Magento? – sushantsahay Sep 7 '11 at 4:27
feedback

Tyy this: $lastInsertId = $connection->lastInsertId();

link|improve this answer
Hi Sudhir, Calling it before saving the transaction returns 0, just like my code was returning, calling it after saving the transactin return correct result. – sushantsahay Sep 4 '11 at 17:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.