Is it possible to put the results from more than one query on more than one table into a TClientDataset?
Just something like
SELECT * from t1; SELECT * from t2; SELECT * from t3;
I can’t seem to figure out a way to get a data provider (SetProvider) to pull in results from more than one table at a time.
There is not a way to have multiple table data in the same TClientDataSet like you referenced. The TClientDataSet holds a single cursor for a single dataset.