2
I have a question about the association of a ClientDataSet
and a TZQuery
. I wanted to associate the same table I selected in my TZQuery
, with my ClientDataSet
, because I want to generate a file .XML, from the table that my ClientDataSet
took.
At first, I thought it was like this:
ClientDataSet1.Assign(ZQuery1);
or
ClientDataSet1.Data := ZQuery1
Gives a mistake of different types.
But obviously I was wrong.
Any idea?
@Tremdoido, truth, would be opening the same query 2 times. : S
– Ramon Ruan