Is there any tricks or fast search for a row in RtcDataSet ? What i do now is to iterate through rows until found or EOF.
rtcdataset.first
while not rtcdataset.eof do begin
if rtcdataset.asvalue['id'] = valuetofind then begin
...
...
break;
end;
rtcdataset.next;
end;