使用 VB.NET 的 DataSet 对象进行数据操作(插入、更新)
我是使用 DataSet 的新手。我正在用 VB.NET 编写一个程序,我必须从一个表中选择数据。然后我必须更新大约 4 个表并插入 2 个表。哪种方法适合我?我正在考虑使用数据集。如果有人能指出这个问题,请向我展示更新数据集的示例代码。非常感谢大家。
I am newbie at using DataSet. I am writing a program with VB.NET, there I have to select data from one table. Then I have to update about 4 tables and insert to 2 Tables. Which approach will be ok for me? I'm thinking to use DataSet. If anyone can point out that problem , please show me with Sample code to update DataSet. Thanks you all very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个链接,您可以请参阅:
这里是关于如何删除的示例:
This is a link you can refer to:
And here's an example on how to delete:
您应该使用数据适配器 - 最好的学习方式 - 在 MSDN 或 Google 中查找一些示例,然后 - 尝试解决您的问题 - 然后 - 如果您遇到问题 - 将其发布到此处。
基础知识:
你需要一个连接、一个命令、一个数据适配器和一个数据集。
您使用 datadapter fill 将数据从数据库获取到数据集,
并更新以将数据放回数据库。
您需要告诉数据适配器如何执行此操作,或者使用向导自动生成命令(INSERT、UPDATE 等...)
You should work with data adapter - best way to learn - look for some examples in MSDN or Google it, then - try to solve your problem - then - if you encounter a problem - post it here.
in basics:
you need a connection, a command, a dataadapter and a dataset.
you use datadapter fill to get the data from DB to the dataset,
and update to put the data back to the database.
you need to tell the data adapter how to do that, or use a wizard to auto-generate the commands (INSERT, UPDATE ect...)