Hi everyone, I've finally updated to RAD Studio 2010 from C++ Builder 6 (!!), and am trying to convert my codebase. I was previously using the Jedi VCL, which was great, but am trying to pare down the number of 3rd party libraries I use.
One of the features I used in jVCL was their TJvMemoryData. I see that the MySQL Library has a TMemDataSet, but I was wondering if there's an easy way to open a dataset from the database using a regular TQuery and then copy it into the TMemDataSet for storage.
The jVCL had a function called LoadFromDataSet that handled this. Is there a better approach for this? What I use it for mainly is to populate drop-downs and comboboxes where I don't want to have to generate a whole new query (they are data driven), so instead can just generate it from the TJvMemoryData, which is much faster.
Thanks for any guidance you can give me.
Ian