编程逻辑从VB6升级到Vb.net
前一段时间我一直在使用 vb6 进行编程,我使用开放的 SQL Server 连接和命令对象来进行数据库事务。我也一直在 vb.net 中寻找类似的方法,但没有找到任何起点。
我们如何在 vb.net 应用程序中进行类似的工作?
I have been programming in vb6 for few time ago and i used open SQL Server connection and command objects to make database traansactions. I have been searching for similar approaches in vb.net too but not finding any starting point.
How can we work similarly in vb.net application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找
SqlConnection
和SqlCommand
。SqlCommand
的 MSDN 页面显示了如何使用它们的示例:http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.aspx
I think you're looking for
SqlConnection
andSqlCommand
.The MSDN page for
SqlCommand
shows a sample for how they can be used:http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.aspx
我建议尽可能使用 SqlDataReader 来检索数据。这是一个更快的选择,而且听起来微软并没有投资于数据集的未来。
I would recommend using the SqlDataReader when possible for retrieving data. It is a faster option, and it sounds like Microsoft is not investing in the future of DataSets.