本文介绍了的MySQL AutoInc的C#数据列AutoInc.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的先生
现在我有一个问题,进行了很多搜索,没有找到任何可行的解决方案,
现在我有带有ID列的表,该列具有主键和自动增量
现在,如果当前ID为5,并且我输入一行,然后将其删除,那么下一个新ID应该为7,而不是6 OK,但是在使用databinding.addnew()之后的VS 2005 C#中,C#获得了最后一个ID,即5和inc .它由1变为6,而不是7,所以Mysql Autoinc和C#autoinc
dear sir
now i have a problem and searched a lot and did not find any working solution ,
now i have table with ID column which Primary Key & Auto Increment
now if the current ID is 5 and i enter a row then i deleted it , so the next new ID should be 7 not 6 OK but the VS 2005 C# after using databinding.addnew() the c# get the last ID which 5 and inc. it by one so it will be 6 not 7 so how the sync between Mysql Autoinc & C# autoinc
推荐答案
这篇关于的MySQL AutoInc的C#数据列AutoInc.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!