在J#中我已经获得一个dataset,里面有些数据,
怎么得到它里面的数据呢?我的意思是说某一个单元的数据
在C#中可以是dataset.tables[0].row[0][0].tostring();
但在J#就高不定了
请高手来帮忙!!!!!!!!!!!!!!!
急ing!!!
------解决方案--------------------------------------------------------
dataset.tables[0].row[0]["字段"].tostring();
------解决方案--------------------------------------------------------
我是问在j#中怎么搞!!!
不是问C#
------解决方案--------------------------------------------------------
人呢?????????????????????
------解决方案--------------------------------------------------------
dataset.tables[0].row[0]["字段"].tostring();
------解决方案--------------------------------------------------------
C#: dataset.tables[0].rows[0]["字段"] (rows not row)
J#: should be same, I guess. Sorry I don't have the VS on hand right now.
------解决方案--------------------------------------------------------
c# dataset.Tables --> J# dataset.get_Tables()