如何获取dataset中的一个表的行数

2024-10-31 14:59:08
推荐回答(1个)
回答1:

我用C#,可以这样取:
mydataset.Tables["mytable"].Rows.Count;
or
mydataset.Tables[0].Rows.Count;