GetClonedDataset ?

Hi,

It seems in 2.7.1.0 GetClonedDataset was implemented in TWebclient. But how is it supposed to work ?

I have a WebSQLRestClientDataset1 that was opened successfully and got its data from a JSON/REST server (in my demo applictation the data is being displayed in a TWebDBGrid).

When I try the following code (when the dataset was fully opened):

  with WebSQLRestClientDataset1.GetClonedDataSet(true) do
  begin
    Showmessage (FieldByName ('FirstName').AsString);
    next;
  end;

I got an error:

We traced & solved this issue. Next update will address this.
Workaround for now. Before accessing the FieldByName, set for the cloned dataset Active = true.