Can I be sure of Last Insert Id of Mysql?

前端 未结 1 1838
囚心锁ツ
囚心锁ツ 2021-01-26 03:07

I have the latest version of Connector/Net.

I know that there is a property of MySqlCommand called LastInsertedId.

Can I be sure that it

相关标签:
1条回答
  • 2021-01-26 03:19

    You'll want a separate database connection/session for each user/session logged into your web server.

    LAST_INSERT_ID returns the last autoincrement value for the current connection/session.

    0 讨论(0)
提交回复
热议问题