tableadapter VB.net 2008 - 检索身份
我正在使用表适配器将记录插入到 MSSQL 表中,例如: 调暗 da_mytable 作为新的 t_mytableTableAdapter da_mytable.Insert(xxxx,xxxx,xxxx)
SQL 表有一个标识字段,也是该表的 PK。
插入工作正常,但我的问题是如何返回插入上使用的 ID。
谢谢。
I am inserting a record to a MSSQL table using a tableadapter using something like:
Dim da_mytable As New t_mytableTableAdapter
da_mytable.Insert(xxxx,xxxx,xxxx)
The SQL table has an identity field which is also the PK for the table.
The insert works fine, but my question is how to return the ID that was used on the insert.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处描述的解决方案。
http://blogs.msdn.com/smartclientdata/archive/ 2005/10/31/ReturnIdentityValueQuery.aspx
Solution described here.
http://blogs.msdn.com/smartclientdata/archive/2005/10/31/ReturnIdentityValueQuery.aspx