Click here to Skip to main content
15,912,504 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: is ado.net really disconnected? Pin
Dave Kreskowiak9-Sep-10 3:52
mveDave Kreskowiak9-Sep-10 3:52 
GeneralRe: is ado.net really disconnected? Pin
PIEBALDconsult12-Sep-10 16:28
mvePIEBALDconsult12-Sep-10 16:28 
GeneralRe: is ado.net really disconnected? Pin
Amolravatale12-Sep-10 20:33
Amolravatale12-Sep-10 20:33 
GeneralRe: is ado.net really disconnected? Pin
Dave Kreskowiak13-Sep-10 2:16
mveDave Kreskowiak13-Sep-10 2:16 
AnswerRe: is ado.net really disconnected? Pin
Not Active9-Sep-10 5:24
mentorNot Active9-Sep-10 5:24 
GeneralRe: is ado.net really disconnected? Pin
The Man from U.N.C.L.E.9-Sep-10 7:40
The Man from U.N.C.L.E.9-Sep-10 7:40 
AnswerRe: is ado.net really disconnected? Pin
Abhinav S11-Sep-10 19:46
Abhinav S11-Sep-10 19:46 
AnswerRe: is ado.net really disconnected? Pin
Arjun Bahree (TechnoMatrix)12-Sep-10 12:16
Arjun Bahree (TechnoMatrix)12-Sep-10 12:16 
Having a disconnected architecture does not have anything to do with which objects require shorter or longer connection time. You need to first understand the basic principle and definition od a disconnected architecture.

In traditional data access components, you make a connection to the database system and then interact with it through SQL queries using the connection. The application stays connected to the DB system even when it is not using DB services. This commonly wastes the valuable and expensive database resource as most of the time applications only query and view the persistent data. ADO.Net solves this problem by managing a local buffer of persistent data (data set). Your application automatically connects to the database server when it needs to pass some query and then disconnects immediately after getting the result back and storing it in dataset. This design is very much similar to the connection less services of http over the internet. It should be noted that ADO.Net also provides the connection oriented traditional data access services.

Another important aspect of the disconnected architecture is that it maintains the local repository of data in the dataset object. The dataset object stores the tables, their relationship and different constraints. The user performs operations like update, insert, delete to this dataset locally and finally the changed dataset is stored in actual database as a batch when needed. This greatly reduces the network traffic and results in the better performance.
GeneralRe: is ado.net really disconnected? Pin
PIEBALDconsult12-Sep-10 16:30
mvePIEBALDconsult12-Sep-10 16:30 
AnswerRe: is ado.net really disconnected? Pin
PIEBALDconsult12-Sep-10 16:36
mvePIEBALDconsult12-Sep-10 16:36 
QuestionI created org chart using trial version, it is running only in localhost. If i want to run IIS it is giving message like u have to purchase and i am not able to view that chart. Is there any alternation solution to view that chart and run in Server [ Pin
sr1599-Sep-10 1:00
sr1599-Sep-10 1:00 
AnswerRe: I created org chart using trial version, it is running only in localhost. If i want to run IIS it is giving message like u have to purchase and i am not able to view that chart. Is there any alternation solution to view that chart and run in Serv Pin
fjdiewornncalwe9-Sep-10 1:22
professionalfjdiewornncalwe9-Sep-10 1:22 
AnswerRe: I created org chart using trial version, it is running only in localhost. If i want to run IIS it is giving message like u have to purchase and i am not able to view that chart. Is there any alternation solution to view that chart and run in Serv Pin
Pete O'Hanlon9-Sep-10 1:38
mvePete O'Hanlon9-Sep-10 1:38 
AnswerRe: I created org chart using trial version, it is running only in localhost. If i want to run IIS it is giving message like u have to purchase and i am not able to view that chart. Is there any alternation solution to view that chart and run in Serv Pin
Dave Kreskowiak9-Sep-10 3:51
mveDave Kreskowiak9-Sep-10 3:51 
GeneralRe: I created org chart using trial version, it is running only in localhost. If i want to run IIS it is giving message like u have to purchase and i am not able to view that chart. Is there any alternation solution to view that chart and run in Serv Pin
fjdiewornncalwe9-Sep-10 7:29
professionalfjdiewornncalwe9-Sep-10 7:29 
GeneralRe: I created org chart using trial version, it is running only in localhost... Pin
Kunal Chowdhury «IN»10-Sep-10 17:12
professionalKunal Chowdhury «IN»10-Sep-10 17:12 
QuestionOdd problem with UDPClient [modified] - Solved Pin
Peter R. Fletcher8-Sep-10 9:17
Peter R. Fletcher8-Sep-10 9:17 
AnswerRe: Odd problem with UDPClient Pin
Luc Pattyn8-Sep-10 9:32
sitebuilderLuc Pattyn8-Sep-10 9:32 
GeneralRe: Odd problem with UDPClient Pin
Peter R. Fletcher8-Sep-10 10:20
Peter R. Fletcher8-Sep-10 10:20 
GeneralRe: Odd problem with UDPClient Pin
Luc Pattyn8-Sep-10 10:53
sitebuilderLuc Pattyn8-Sep-10 10:53 
GeneralRe: Odd problem with UDPClient Pin
Peter R. Fletcher9-Sep-10 10:44
Peter R. Fletcher9-Sep-10 10:44 
GeneralRe: Odd problem with UDPClient Pin
Luc Pattyn9-Sep-10 10:59
sitebuilderLuc Pattyn9-Sep-10 10:59 
GeneralRe: Odd problem with UDPClient Pin
Peter R. Fletcher13-Sep-10 4:51
Peter R. Fletcher13-Sep-10 4:51 
QuestionAdding different contorl( combox, textbox) in a single coloumn of datagirdview (window) Pin
shahabsuhail7-Sep-10 22:56
shahabsuhail7-Sep-10 22:56 
AnswerRe: Adding different contorl( combox, textbox) in a single coloumn of datagirdview (window) Pin
Dave Kreskowiak8-Sep-10 4:18
mveDave Kreskowiak8-Sep-10 4:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.