Disconnected dataset.

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
MarkF
Posts: 211
Joined: Thu 02 Mar 2006 14:55

Disconnected dataset.

Post by MarkF » Fri 23 Apr 2010 11:13

I'd really like to keep my data after a disconnect but still have the ability to sort it and filter it. I can't use the session disconnectedmode due to threading issues and I can't use the disconnect feature of TOraDataset as it doesn't support complex types.

Does anyone have any suggestions at all?

I currently convert the complex objects to strings for display (I cache them outside the dataset). Is it possible to do that conversion in the dataset somehow such that it could be disconnected?

Alternately, do people use a clientdataset or in memory dataset to do this kind of thing?

Thanks for any suggestions!

-Mark

bork
Devart Team
Posts: 649
Joined: Fri 12 Mar 2010 07:55

Post by bork » Tue 27 Apr 2010 07:08

Hello

Yes, you can use TClientDataSet for your purposes. But you should remember that TClientDataSet works slowly if you try to use it for working with large volume of data.

Post Reply