Adapter, SelfServicing and their implementation

Posts   
 
    
orenpeled
User
Posts: 53
Joined: 25-Jul-2005
# Posted on: 26-Jul-2005 15:37:33   

Hey everybody

I am very curious to find out the ODP and DATA objects on which the Adapter and SelfServicing are based Is there any use in OracleDataAdapter, for example? Is there any chance that DataSets are hidden behind?

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39749
Joined: 17-Aug-2003
# Posted on: 27-Jul-2005 10:52:01   

orenpeled wrote:

I am very curious to find out the ODP and DATA objects on which the Adapter and SelfServicing are based Is there any use in OracleDataAdapter, for example? Is there any chance that DataSets are hidden behind?

Entities are read using a datareader, and everything related to update, insert and delete's are done using command objects. Typed lists and typed views are fetched using dataadapters, and stored procedures which return a resultset are also using dataadapters. No dataset objects are used behind the scenes, except at one spot: a datatable is used to fetch the PK-PK related values in a m:n prefetch query (the values in the intermediate table).

Frans Bouma | Lead developer LLBLGen Pro