ASP .NET Interview Questions and Answers
Question: Can you explain the difference between an ADO.NET Dataset and an ADO Recordset?Answer: Valid answers are:路A DataSet can represent an entire relational database in memory, complete with tables, relations, and views. 路A DataSet is designed to work without any continuing connection to the original data source. 路Data in a DataSet is bulk-loaded, rather than being loaded on demand. 路There's no concept of cursor types in a DataSet. 路DataSets have no current record pointer You can use For Each loops to move through the data. 路You can store many edits in a DataSet, and write them to the original data source in a single operation. 路Though the DataSet is universal, other objects in ADO.NET come in different versions for different data sources. |
Save For Revision
Bookmark this item, mark it difficult, or place it in a revision set.
Log in to save bookmarks, difficult questions, and revision sets.
Is it helpful? Yes No
Most helpful rated by users:
- What鈥檚 the difference between Response.Write() andResponse.Output.Write()?
- Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.
- What methods are fired during the page load?
- What namespace does the Web page belong in the .NET Framework class hierarchy?
- When during the page processing cycle is ViewState available?