Write steps of retrieving data using ado.net ?
Answer Posted / senthil kumar
we can use two ways to retrieve the data from database
1 -> data reader
2 -> data adapter
when you use datareader
create connection object and open the connection
SqlCommand cmd = new SqlCommand(sql,con);
cmd.CommandType = CommandType.Text;
SqlDataReader sread = cmd.ExecuteReader();
while(sread.Read())
{
String data1 = sread.GetString(0);
int data2 = sread.GetValue(1);
String data3 = sread.GetString(2);
}
when u use the dataadapter
create the connection and open
SqlDataAdapter sda = new SqlDataAdapter(sql,con);
DataSet ds = new DataSet();
sda.Fill(ds,"customer");
then use can get the data in row wise or directly assign
the data to the controls through datasource.
i think its enough.If i did any mistake correct me.
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
Do we use stored procedure in ADO.Net?
Can you explain how to enable and disable connection pooling?
How to create data relations?
What is ado.net explain with diagram?
How can we save all data from dataset?
What is the full form of ado.net?
What is DataReader Object?
What is the provider being used to access oracle database?
What is the difference between Response.Expires and Reponse.ExpiresAbsolute?
What is the difference in record set and dataset?
Explain the DataAdapter.Update() and DataSetAcceptChanges() methods.
Is bulk insert faster than insert?
Which object of ado contains datarow datacolumn collection?
What is dataadapter in ado.net?
How can we check that some changes have been made to dataset since it was loaded?