dataset
在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()