explain connection less and with connection?diference
between data reader,data set,data adapter? can we use data
reader,data set in a single application? if yes explain
with simple code,if no explain?
Answers were Sorted based on User's Feedback
Answer / kavitha
in connection less architecture connection to the database
need not be persist till the end of the process.after
fetching the data form database it is pushed in database
object called dataset and connection object need not to be
persist and its closed. and the data will be available from
the dataset.
data reader - ADO.NET DataReader to retrieve a read-only,
forward-only stream of data from a database. Using the
DataReader can increase application performance and reduce
system overhead because only one row at a time is ever in
memory.Connection to the database is maintained till the
end.it is simply like an ado object.it contains only one
table at a time.it is much faster than dataset.
dataset - is used to hold the data from the database along
with their relation. it is connection less object.it also
persist the value which are retrieved form the database.
it is a bit bulky object.it gives both forward and backward
access to data. it uses XML.it can consist more than one
table.we have atrribtes for the dataset
dataset
datatable
datarow
datacolumn
an adapter object is used to fill the data from the database.
dataadapter - dataadapter is a database object which
used to fill the dataset object with data from the database.
| Is This Answer Correct ? | 35 Yes | 2 No |
Answer / prabhat saxena(lmp)
above exp. is excellent for connection less and connection
oriented.
data adapter performs almost five steps
1- open(create)connection
2- fatch the data
3- generate xml file of data
4- fill xml data file into the dataset by fill()method
5- closed the connection.
| Is This Answer Correct ? | 19 Yes | 0 No |
how to add a selected row of a gridview to another gridview without reloading the page??
how we can fire event in databound coulm in datagfrid withot using button?
What is a dataview?
what is bubbled event can u pls explain
What providers does ado.net uses internally ?
What is data relation in ado.net?
What is read only and forward only in ado.net?
Which property is used to check whether a DataReader is closed or opened?
What is the namespaces being used to access oracle database?
Explain how to pass multiple tables in datasets simultaneously?
What is meant by ‘transaction’ in a database and what are the ‘properties of transaction’?
oledbdataadpter with ms access in c#.net giving exception System.Data.OleDb.OleDbException while writing adapter.update(dataset,"tabname"); how to update the database from dataset?
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)