| 1. |
Describe The Disconnected Architecture Of Ado.net's Data Access Model? |
|
Answer» ADO.NET MAINTAINS a disconnected database access model, which means, the application never remains CONNECTED constantly to the data source. Any changes and operations done on the data are saved in a LOCAL copy (DATASET) that acts as a data source. Whenever, the connection to the server is re-established, these changes are SENT back to the server, in which these changes are saved in the actual database or data source. ADO.NET maintains a disconnected database access model, which means, the application never remains connected constantly to the data source. Any changes and operations done on the data are saved in a local copy (dataset) that acts as a data source. Whenever, the connection to the server is re-established, these changes are sent back to the server, in which these changes are saved in the actual database or data source. |
|