Is there an implementation for Delphi:TClientDataSet in C++ for MVS? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T03:07:14Zhttp://stackoverflow.com/feeds/question/138952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/138952/is-there-an-implementation-for-delphitclientdataset-in-c-for-mvs2Is there an implementation for Delphi:TClientDataSet in C++ for MVS?CoolMagichttp://stackoverflow.com/users/226412008-09-26T11:48:53Z2008-09-29T19:02:24Z
<p>I want to migrate from Embarcadero Delphi to Visual Studio, but without a <a href="http://docs.codegear.com/docs/radstudio/radstudio2007/RS2007_helpupdates/HUpdate4/EN/html/delphivclwin32/DBClient_TClientDataSet.html" rel="nofollow">TClientDataset</a> class it is very difficult.
This class represents an in-memory dataset.</p>
<p>I can't find any class like <a href="http://docs.codegear.com/docs/radstudio/radstudio2007/RS2007_helpupdates/HUpdate4/EN/html/delphivclwin32/DBClient_TClientDataSet.html" rel="nofollow">TClientDataset</a>.</p>
<p>Can anyone help me find something like this please?</p>
http://stackoverflow.com/questions/138952/is-there-an-implementation-for-delphitclientdataset-in-c-for-mvs/139733#1397331Answer by Chris Lively for Is there an implementation for Delphi:TClientDataSet in C++ for MVS?Chris Livelyhttp://stackoverflow.com/users/24242008-09-26T14:08:03Z2008-09-26T14:08:03Z<p>Visual studio has DataSet and DataTable classes which are very close to what a TClientDataSet is in Delphi.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/system.data.dataset.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.data.dataset.aspx</a></p>
http://stackoverflow.com/questions/138952/is-there-an-implementation-for-delphitclientdataset-in-c-for-mvs/150148#1501482Answer by Fabricio Araujo for Is there an implementation for Delphi:TClientDataSet in C++ for MVS?Fabricio Araujohttp://stackoverflow.com/users/103002008-09-29T19:02:24Z2008-09-29T19:02:24Z<p>The .NET couple System.Dataset and System.Datatable are very
different beasts from the TClientDataset.</p>
<p>Filtering and binding are done on another class (Dataview),
dotNET DataGrid hides this a little. Extract method is the
nearest a datatable provides in termes of filtering (it returns
an array of pointers to DataRows).</p>
<p>Grouping is not so powerful as in TClientDataset, as also indexing
is poorer. (As in dotNet 1.1)</p>
<p>There's no record cursor on DataTable, so the positioning is on
the visual controls - it takes 10 lines of codes just to get the
actual record out of a DataGrid.</p>
<p>So the easiness of positioning the cursor on grid and get the
value of the field of the dataset does not exist.</p>