I'm trying to make some SQL?Server code also run on MySQL, and I just hit this land mine. Google says the normal approach is to simply do your insert and then select last_insert_ID() to find out what got written.
This does not strike me as safe in a multi-user environment, though. There's a narrow window there where another user could insert something and cause a bad return value. How do I safely insert and obtain the key of the inserted record?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…