Findkey in Cloned DataSet work?
Hello, I would like to confirm a question.
Does the FindKey method work on a cloned dataset?
In my tests, it does not work.
In the IBDAC documentation, a restriction is that the cloned dataset does not allow the use of filters. Is the fact that FindKey does not work due to this restriction?
Sample:
- var
- LDataSet1, LDataSet2: TIBCQuery;
- LDataSet1.SQL := 'new SQL';
- LDataSet1.Open;
- LDataSet2.CloneCursor(LDataSet1);
- LDataSet2.FindKey([1]);
Return from test:
Thanks.