Can you explain the difference between an ADO.NET Dataset
and ADO Recordset?
Answers were Sorted based on User's Feedback
Answer / manjunath
Dataset:
1.With dataset you can retreive data from two different
databases and merge them into one dataset.It is a connected
service.
2.All representations is done in xml.
3.Dataset can be transmitted on HTTP.
Recordset:
1.With recordset you cannot retreive data from two
different databases and merge them into one recordset.
It is a Connectionless service.
2.All representations is done using COM.
3.Recordset cannot be transmitted on HTTP
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / raghumadhav tirunagari
DIsconnected architechure . Maintainace relation schemas.
MUtilple table grouping.
Connected one .
| Is This Answer Correct ? | 1 Yes | 2 No |
Explain what does the term "green architecture" mean? : .NET Architecture
Let's say I have an existing application written using Visual Studio 6 (VB 6, InterDev 6) and this application utilizes Windows 2000 COM+ transaction services. How would you approach migrating this application to .NET ?
What happens when you try to update data in a dataset in .net while the record is already deleted in sql server as backend?
7. Oop-Diff B/w Interfacse and abstract class.
Explain the race around condition? : Dot net architecture
if there are two application 1 and 2 having a variable x in both app if client1 changes value of x in 1 app client 2 want reads the value of x from 2 app what resultant value will he get
Explain the race around condition? How can it be overcome? : Dot net architecture
Explain pipelining? : Dot net architecture
which would be the best to use inproc,outproc or sql server
What is difference between .net and visual studio?
2. I've a class Parent Class A and a Derived Class B. Here is a scenario. I've an instance of Class A as objA and an instance of Class B as objB. I can refer a child class variable as objB=objA, but cannot do objA=objB what is the reason?
What is the cli? Is it the same as the clr?