RecordSets && DataSets
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
can someone tell me how can i get a DataSet and put it into a RecordSet? if u know this please help me. thanks :cool: Nuno Henrique Mendes
Are you talking about .NET Datasets? If so, you may never want to do that. However use something like this:
DataView dv = MyDataSet.Tables ["MyTableName"].DefaultView;
Now you can use
dv
just like a normal recordset. Best regards, Alexandru Savescu P.S. Interested in art? Visit this!