What is the difference between connected environment and a
disconnected environment?

Answers were Sorted based on User's Feedback



What is the difference between connected environment and a disconnected environment?..

Answer / neha

Connected:
In connected environment, the connection object is
constantly opened to operate on the databases, and is closed
after all the operation are performed.
Advantages: fast retrieval of data, updated information is
always accessed
Disadvantage: security threats

Disconnected:
In the disconnected environment, the connection object is
opened for the minimum amount of time, that is, the time
when data is retrieved. After the data is retrieved from the
database, the connection is closed, and all the operations
like INSERT, UPDATE, DELETE, etc are performed offline. The
change during the operation can be reflected back to the
database in the similar manner.
Advantage: no security threats, increase in performance as
connection is not constantly opened.
Disadvantage: slow data retrival.

Is This Answer Correct ?    13 Yes 1 No

What is the difference between connected environment and a disconnected environment?..

Answer / pavithra

In connected,an application is constantly connected to data
source.
advantages :
data concurrency is avoided because one user is connected
to a data source and updating data,while another user cant
made changes on data.
In disconnected environment ,application isnt directly
connected to data source.user use connection at once to
retrieve data and connection closed after retreiving.
limitation:
data concurrency.

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More ADO.NET Interview Questions

Which is faster dataset or datareader?

0 Answers  


what is clustered index?why is it created?

4 Answers   Microsoft, Wipro,


Explain why edit is not possible in repeater?

0 Answers  


What are all the commands used with Data Adapter?

0 Answers  


How do we invoke queries from the application

2 Answers  






What provider ado.net use by default? Explain the role of data provider in ado.net? What is the role of data provider in ado.net?

0 Answers  


what is typed and untyped dataset

3 Answers  


How to find the given query is optimised one or not?

0 Answers  


What are the ado.net connection pooling parameters?

0 Answers  


What are two types of transaction supported by ado.net?

0 Answers  


what are types of Dataset ?

6 Answers   HCL,


Which object is used to add relationship between two Datatables?

0 Answers  


Categories