Skip to main content

Difference between Connected and disconnected architecture

ConnectedDisconnected
It is connection oriented.
It is dis_connection oriented.
DatareaderDataSet
Connected methods gives faster performance
Disconnected get low in speed and performance.
connected can hold the data of single tabledisconnected can hold multiple tables of data
connected you need to use a read only forward only data reader
disconnected you cannot
Data Reader can't persist the data
Data Set can persist the data
It is Read only, we can't update the data.
We can update data

Comments