问题描述
大家好,
我正在使用DataSet从数据库接收数据,
填充的过程,根据情况将数据表放入一张表或三张表,
问题在于,当DataSet充满三个表时,它仍然保留其Count中的表数,例如:
SpecificDataSet.Tables.Count
就像情况是一个表一样,它的属性SpecificDataSet.Tables.Count中仍然有3个,这在我的项目中导致错误
我使用了清除方法,但对我没有帮助.
SpecificDataSet.Clear();
SpecificDataSet.Tables.Clear();
任何人都有想法
谢谢.....................编程.
因此 DataSet.Clear [ ^ ]明确指出所有所有包含的表中的行都将被删除.它没有提及删除包含的DataTable
的内容,因此它不这样做.
您检索到这样的表SpecificDataSet.Tables.Count
的数量,该数量立即告诉我SpecificDataSet.Tables
是某种形式的集合,因此它很可能具有Clear
方法,并且您知道 [ ^ ].所以你应该写SpecificDataSet.Tables.Clear()
Hi every body,
I am using DataSet to receive data from database,
the procedure which fill it, put in dataset one table or three table according to the case,
the problem is that when DataSet filled with three tables it still preserve with that number of tables in its Count like:
SpecificDataSet.Tables.Count
as when the case is one table only it still has 3 in its property SpecificDataSet.Tables.Count, and that cause error in my project
I used Clear method but not help me.
SpecificDataSet.Clear();
SpecificDataSet.Tables.Clear();
Any body have any idea
Thanks...
这篇关于DataSet.Tables.Count属性在处理后保留其值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!