We all know that Dataset is purely disconnected
architechure, but we also know that we can update the
changes made to the dataset can be updated in the backend
database. when there is no connection how does the update
happedn?
Answers were Sorted based on User's Feedback
Answer / komal gupta
As DataAdaptor is Internally build of Select, Insert , Update and Delete Command,It can be updated via using da.Update(ds) , It will internally create Insert/Update/Delete Commnand for DataAdaptor (as per modifcation. Or else We can write specific Insert/Update/Delete Command for Every Action of User and attch these command to DataAdaptor.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / vasu
IN DataSet it will use the DataAdapter for communication
with data base when dataset updating the data DataAdapter
will open the connection automatically lost.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / venu
Ya dataset have drawback.it is not updated in database
automatically.we have to use
da.update(dataset_object,Table_name);
At this time only update the table in your database.
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / neha
DataAdapter helps in updating back the database through its
update method. That is,
adapter.Update(ds);
It does this even when the connection is closed. Actually,
data adapter opens connection object to update the records,
after the records are updated, the connection is closed
again. Since there must be some path from application to
database in order to update and retrieve records. Thus, to
do this, adapter uses the connection.
| Is This Answer Correct ? | 1 Yes | 0 No |
can we create synonymn in ms access,sql server,my sql if so explain me with example
What is Dataset Object?
WHAT Are the major major compnents of a data provider in ADO.net.
What is a non query?
What is connection pooling and what is the maximum pool size in ado.net connection string?
What is row state?
What are the advantages and disadvantages of using datalist?
We all know that Dataset is purely disconnected architechure, but we also know that we can update the changes made to the dataset can be updated in the backend database. when there is no connection how does the update happedn?
6 Answers Accenture, FastStream,
What is the difference between executenonquery () and executescalar ()?
Can we load multiple tables in a dataset?
What does sqldatareader return?
What is ole used for?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)