Make copy of DataSet
Posted: Mon 06 Jun 2022 11:37
Hello,
I am converting our old code with ado components to a new one using TUni..
I am having a problem with code like this:
AdoQuery.open();
AdoQuery.first();
AdoDataSet.Recordset := AdoQuery.Recordset;
AdoQuery.close();
It supossed to make a copy of AdoQuery data. Can i do something like that with TUniQuery?
I know that TUniQuery neither TDataSet have not RecordSet. But is there an elegant way to make a copy of data to another TDataSet or TUniQuery from TUniQuery?
I am converting our old code with ado components to a new one using TUni..
I am having a problem with code like this:
AdoQuery.open();
AdoQuery.first();
AdoDataSet.Recordset := AdoQuery.Recordset;
AdoQuery.close();
It supossed to make a copy of AdoQuery data. Can i do something like that with TUniQuery?
I know that TUniQuery neither TDataSet have not RecordSet. But is there an elegant way to make a copy of data to another TDataSet or TUniQuery from TUniQuery?