K Keven Jun 12, 2009 #1 Hi all, I wonder if there is a way to convert SqlCeResultSet into DataSet? Thanks!
G Ginny Caughey MVP Jun 12, 2009 #2 Since SqlCeResultSet is a DataReader plus extra functionality, you should be able to just treat it as a DataReader to fill a DataSet. Have you tried that?
Since SqlCeResultSet is a DataReader plus extra functionality, you should be able to just treat it as a DataReader to fill a DataSet. Have you tried that?
E egmkang.wang Jun 13, 2009 #3 Hi all, I wonder if there is a way to convert SqlCeResultSet into DataSet? Thanks! Click to expand... why not use SqlCeDataReader directly??
Hi all, I wonder if there is a way to convert SqlCeResultSet into DataSet? Thanks! Click to expand... why not use SqlCeDataReader directly??
G Ginny Caughey MVP Jun 13, 2009 #4 Sure, you could do that. But I thought the question was about using SqlCeResultSet.