vb.net ADO CommandBuilder 插入?
我正在使用 vb.net 2008 和 ADO.NET。使用ADO CommandBuilder和Insert命令时如何获取新创建的Key? (我的表作为身份列,这是关键。)
I'm using vb.net 2008 and ADO.NET. When using the ADO CommandBuilder and the Insert Command how can I get the newly created Key? (my Table as an Identity column and this is the key.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试像这样的插入命令
然后你可以设置@id参数如下
最后你可以在int变量中获取id参数的值
Try your insert command somethign like this
And then you can set @id Parameter as below
Finally you can get the value of id parameter in an int variable