DataSource 和 DataAdapter 有什么区别?
DataSource 和 DataAdapter 有什么区别?我正在尝试决定是否应该从 IDataSource 或 IDataAdapter 继承来在 Winforms 和 WebForms 之间共享代码,除了使用它们的方式略有不同之外,我似乎无法弄清楚它们之间有什么区别。
What is the difference between a DataSource and DataAdapter? I'm trying to decide if I should descend from IDataSource or IDataAdapter for code to be shared between Winforms and WebForms and I can't seem to figure out what the difference is other than slightly different ways to use them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataSource 只是我们填充数据的数据源,即 DataSet、DataBase、XML 文件等。DataAdapter
是工具或类,我们可以使用它来填充/更新数据库中的数据。
DataSource is just source of data from where we are populating the data i.e. DataSet, DataBase, XML File, etc...
DataAdapter is tool or class using by which we can populate/update data from database.