I have a simple Delphi (2007) procedure that given a TDataSet and a (sub)list of fields returns a new TClientDataSet with the distinct values from the given TDataSet.
This works quite well.
In my proc I used the TClientDataSet index to populate the distinct values. It was fast and easy.
The problem is that TClientDataSet index support at maximum 16 fields. If you add more of them they will be silently ignored.
I need more than 16 fields in the dataset (and thus in the index).
Is there any solution? Some hack? Maybe some open source library to use as workaround?
I'm working offline so I must do it in memory. The size of the dataset is not huge
SELECT DISTINCT * FROM Table? – Rob Kennedy Jan 10 at 19:04