VB.NET DataSet 不清除

发布于 2024-12-09 21:52:11 字数 181 浏览 0 评论 0原文

我使用带有适配器的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落墨 2024-12-16 21:52:11

如下所示从 DataSet 中删除 DataTable:

ds.Tables.Clear();

这将删除集合中的 DataTable。 DataSet.Clear() 从 DataSet 中的所有 DataTable 中删除

Remove the DataTables from the DataSet as so:

ds.Tables.Clear();

This will remove the DataTables in the collection. DataSet.Clear() removes the rows from all the DataTables in the DataSet

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文