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 type of database is used while processing dynamic database?

1 Answers   Microsoft,


What is the key feature of ADO.NET compared to ADO ?

3 Answers   TCS,


Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?

0 Answers  


Why edit is not possible in repeater?

0 Answers  


About ado.net components/objects. Usage of data adapters and tell the steps to retrieve data ?

1 Answers   MMTS,






Can you edit data in the Repeater control?

9 Answers  


What is the difference between ADO and ADO.Net?

0 Answers  


What is the difference between ado.net and oledb?

0 Answers  


What is the default Timeout for SqlCommand.CommandTimeout property?

0 Answers  


What is the difference between dataset and datatable?

0 Answers  


Why is ADO.NET serialization slower than ADO ?

0 Answers   NA,


how to display empty table to datagrid

3 Answers   LG Soft,


Categories