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
How do you update a dataset in ado.net?
What is meant by ‘transaction’ in a database and what are the ‘properties of transaction’?
What are the Features and disadvantages of dataset
Explain how to find the given query is optimised one or not?
What is a string variable?
What are the Features of a dataset
What is connected architecture in ado.net?
How can we load multiple tables in to dataset?
What is ole in excel?
Where is adodb dll located?
If a table contains 20000 records. In a page at each time 100 records to be displayed.
Explain why canot we use multiple inheritance and garbage collector paralelly in .net?
Can you explain how to enable and disable connection pooling?
What do you know about ado.net's objects?
What are the essential features of ado.net?