Ben aşağıdaki gibi (Zend_Db kullanarak) gider bir MySQL sorgusu vardır:
$sql = $handle->quoteInto("UPDATE board SET rank=rank+1 WHERE post_id=?", $postid);
$handle->query($sql);
(Rank isn't an auto-incrementing PK).
I would like to now retrieve the value of rank
without preforming another query.
I've tried $handle->lastInsertId();
but it doesn't seem to work , since I didn't use MySQL's natural auto-incrementing method (I can't - rank
is the rank of a post. I either ++ or -- it.)
Başka bir sorgu preformıng ile bunu yapmak için herhangi bir şekilde? Bu bir fonksiyon son değiştirilen değer dönecektir?