当前位置:  开发笔记 > 编程语言 > 正文

使用C#获取插入行的id

如何解决《使用C#获取插入行的id》经验,为你挑选了2个好方法。



1> petra..:
MySqlCommand comm = connect.CreateCommand();
comm.CommandText = insertStatement;  // Set the insert statement
comm.ExecuteNonQuery();              // Execute the command
long id = comm.LastInsertedId;       // Get the ID of the inserted item


*LastInsertedId不是线程安全的.*如果另一个线程正在插入内容,LastInsertedId将返回与db的连接上的最后一个插入的id.因此,如果多个线程执行它(或者甚至将具有相同用户的进程分离到db),那么它将是错误的.

2> Michael Hare..:

[编辑:在引用last_insert_id()之前添加"select"]

select last_insert_id();插入后运行" " 怎么样?

MySqlCommand comm = connect.CreateCommand();
comm.CommandText = insertInvoice;
comm.CommandText += "\'" + invoiceDate.ToString("yyyy:MM:dd hh:mm:ss") + "\', "  
    + bookFee + ", " + adminFee + ", " + totalFee + ", " + customerID +  ");";
    + "select last_insert_id();"

int id = Convert.ToInt32(comm.ExecuteScalar());

编辑:正如duffymo所提到的,使用像这样的参数化查询你会得到很好的服务.


编辑:直到你切换到参数化版本,你可能会发现与string.Format和平:

comm.CommandText = string.Format("{0} '{1}', {2}, {3}, {4}, {5}); select last_insert_id();",
  insertInvoice, invoiceDate.ToString(...), bookFee, adminFee, totalFee, customerID);


只是想注意,如果各个线程使用共享连接,Ted是正确的.如果每个线程都建立了它自己的连接,它应该运行得很好,因为mysql在每个连接的基础上处理它.[last_insert_id()documentation](http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_last-insert-id)
推荐阅读
勤奋的瞌睡猪_715
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有