VB.NET DataSet 不清除
我使用带有适配器的 MYSQL .NET 连接器来从 SELECT 语句填充数据集。在不同的 SELECT 语句之间,我使用 DataSet.Clear() 函数。 Getxml 向我显示数据集是空的,但是当循环浏览表的列时,我拥有先前 SELECT 语句中使用的所有表中的所有列。
如何在不为每个表调暗新数据集的情况下进行此操作?
I'm using the MYSQL .NET connector with an adapter to fill a dataset from a SELECT statement. Between different SELECT statements I use the DataSet.Clear() function. The Getxml shows me that the dataset is empty, however when cycling through the Table's columns, I have all the columns from all the tables used in prior SELECT statements.
How do I go about that without Dimming new Datasets for each table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如下所示从 DataSet 中删除 DataTable:
这将删除集合中的 DataTable。
DataSet.Clear()
从 DataSet 中的所有 DataTable 中删除行Remove the DataTables from the DataSet as so:
This will remove the
DataTable
s in the collection.DataSet.Clear()
removes the rows from all the DataTables in the DataSet