What is main five diffrent between Connected And
Disconnected environment
Answer Posted / neha
1.Connected: It works when connection object is opened.
Disconnected: It works regardless of the connection object
state (opened or closed doesnot matter).
2.Connected: It can retrieve data from single table only.
Disconnected: It can retrive data from multiple tables.
3.Connected: The data persists even after the shutdown of
application.
Disconnected: The data doesnot persist after the application
closure, as it was all programmatic.
4.Connected: We get the updated data always.
Disconnected: The data we retrieve is not guaranteed to be
updated.
5.Connected: Fast access to the data.
Disconnected: Slow access to data.
6.Connected: It is useful in the scenarios where data is
updated rapidly, for eg, stock market.
Disconnected: It is useful in the scenarios where data is
not updated usually, for eg, school database, where data is
changed after one year only.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
describe the dataset object in ado.net.
Command objects uses, purposes and their methods.
What is the full form of ado.net?
Define data access layer?
What are the disadvantages of using datalist?
Explain ODP.net
How to Read, Add, Update and Delete record in Entity Framework ?
What is sql connection in ado.net?
What is a non query?
What is microsoft ole db provider for sql server?
What is the use of data grid?
What do you mean by performing asynchronous operation using command object?
What is datasource in ado.net?
What is the difference between sqldatareader and sqldataadapter?
Describe connection object in ado.net