W dniu 13.11.2014 18:21, Maciej Hiller napisał(a):
Hej,
Witam,
problem z GetLastInsertID jest też w funkcji TicketAadd w LMS.class
(..) $msgid = $this->DB->GetLastInsertID('rtmessages');
foreach (array_keys($ticket['categories']) as $catid) $this->DB->Execute('INSERT INTO rtticketcategories (ticketid, categoryid) VALUES (?, ?)', array($id, $catid));
if (!empty($files) && null !== (ConfigHelper::getConfig('rt.mail_dir'))) { // $msgid = $this->DB->GetLastInsertID('rtmessages'); (..)
jak dwie osoby w tym samym czasie robią zgłoszenie w Helpdesku i jedna dodaje załącznik do zgłoszenia bywa, że załącznik ląduje w tym drugim zgłoszeniu :) rozwiązałem to jak powyżej wcześniej zapisuję sobie id, w pętli foreach spędzał tyle czasu, że last id zdążyło się zmienić na pewno lepszym rozwiązaniem było by
$DB->BeginTrans(); $DB->CommitTrans();
Jeśli prawdą jest to co piszesz to oficjalna dokumentacja funkcji LAST_INSERT_ID(): http://dev.mysql.com/doc/refman/5.6/en/information-functions.html#function_l... http://dev.mysql.com/doc/refman/5.5/en/information-functions.html#function_l... http://dev.mysql.com/doc/refman/5.1/en/information-functions.html#function_l... http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_l... a zwłaszcza poniższy fragment: "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." mija się z prawdą. <trolling-mode> a to by oznaczało kolejne potwierdzenie, że mysql jest byle jaki </trolling-mode> :D
Poczekajmy na potwierdzenie od jeszcze kogoś, że problem z niezgodnością implementacji z dokumentacją w mysql rzeczywiście istnieje. Jakoś nie chce mi się w to wierzyć...