What is sequence of code in retrieving data from database?
Answer Posted / seshu
SQLConnection conn = new
SQLConnection("DataSource=;InitialCatalog=;User Id=;Password=");
SQLCommand cmd=new SQLCommand("select * from tablename",conn);
DataAdapter da=new DataAdapter(cmd);
Dataset ds=new Dataset();
da.fill(ds,"tablename");
Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is an imagemap in asp.net?
What are cookies in asp.net?
What is the sequence in which ASP.NET events are processed?
Explain what is clr?
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
Explain different types of validators in asp.net?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
What is asp short for?
What are the differnt types of handler in ASP.NET?
What is the difference between exe and dll?
Can you use Web API with ASP.NET Web Form?
How do you handle server controls?
What is session management in web application?
What is mvc in asp.net tutorial? : Asp.Net MVC
What is client side state management?