Jump to content
Forumu Destekleyenlere Katılın ×
Paticik Forumları
2000 lerden beri faal olan, çok şukela bir paylaşım platformuyuz. Hoşgeldiniz.

INSERT yaparken id'yi aldırmak


Pluton

Öne çıkan mesajlar

Şimdi ilk önce kullanmak istemediğim ama çalışan kod şu;


$last_id = $db->query("INSERT INTO table (name) VALUES ('paticik')");
$db->query("UPDATE table SET sort='$last_id' WHERE id='$last_id'");


Bunun yerine INSERT yaparken direk inserti yaptıgı ID 'yi aldırmam mümkün müdür? Mümkünse nasıl mümkündür ?
Link to comment
Sosyal ağlarda paylaş

http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_last-insert-id
MySQL documentation said:
The ID that was generated is maintained in the server on a per-connection basis. This means that the value returned by the function to a given client is the first AUTO_INCREMENT value generated for most recent statement affecting an AUTO_INCREMENT column by that client. This value cannot be affected by other clients, even if they generate AUTO_INCREMENT values of their own. This behavior ensures that each client can retrieve its own ID without concern for the activity of other clients, and without the need for locks or transactions.


bazen dersini calismadigini dusunuyorum di ;)
Link to comment
Sosyal ağlarda paylaş

×
×
  • Yeni Oluştur...