Im new to PHP and I was wondering how I can overcome this seemingly simple problem:

I have a database with several tables. Of them 1 table is called "order_header". Order header has a field called "orderID" which is the primaryKey and is auto-incremented. OrderID is used in other tables in the database (food_table, drinks_table, merchant_info, customer_info, etc)and is unique to a particular order.

Now I insert data into the order_header using the usual INSERT statement and the order_header generates a new orderID. But now I need to retrieve the orderID I just created and use it to insert data into other tables of that database.

The question is how can I do both inserting data and retrieving the resulting orderID in one atomic method? I cannot use the mySQL query to get the last orderID because what if another thread has inserted an entry in orderID in the meanwhile.

In Java I guess one could use locks and the word @synchronized, but how would one do this in PHP?

link|improve this question

1  
possible duplicate: stackoverflow.com/questions/621369/… – Nick B Aug 8 '11 at 0:28
feedback

1 Answer

up vote 5 down vote accepted

Use mysql_insert_id straight after the query. It doesn't run another query to find the last ID

link|improve this answer
Thanks for your answer- quick question------but is that thread-safe and atomic? What is another thread inserts a record right after and then this statement executes, then don't I get the incorrect ID? – banditKing Aug 8 '11 at 0:36
Yes - it returns the result for the last query on the current connection, since you call mysql_connect on each request, each "thread" has a different connection. – waitinforatrain Aug 8 '11 at 0:49
OK thanks a lot- appreciate your help. – banditKing Aug 8 '11 at 0:57
feedback

Your Answer

 
or
required, but never shown

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