Is there an implementation for Delphi:TClientDataSet in C++ for MVS? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T03:07:14Z http://stackoverflow.com/feeds/question/138952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/138952/is-there-an-implementation-for-delphitclientdataset-in-c-for-mvs 2 Is there an implementation for Delphi:TClientDataSet in C++ for MVS? CoolMagic http://stackoverflow.com/users/22641 2008-09-26T11:48:53Z 2008-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#139733 1 Answer by Chris Lively for Is there an implementation for Delphi:TClientDataSet in C++ for MVS? Chris Lively http://stackoverflow.com/users/2424 2008-09-26T14:08:03Z 2008-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#150148 2 Answer by Fabricio Araujo for Is there an implementation for Delphi:TClientDataSet in C++ for MVS? Fabricio Araujo http://stackoverflow.com/users/10300 2008-09-29T19:02:24Z 2008-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>