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 the Intermittent crashing of application in production?
In What Order Do The Events Of An Aspx Page Execute. As A Developer Is It Important To Undertsand These Events?
Is asp.net free?
Explain difference between dataset and recordset?
What is a 404 redirect?
Explain the difference between Repeater and Data list control in ASP.NET?
What is full form of asp.net?
Where do the cookie state and session state information be stored?
What does postback mean?
What is work flow gen? how can it will work with .Net?
Is asp.net and .net the same?
Suppose you want an asp.net function (client side) executed on the mouseover event of a button. Where do you add an event handler?
What is a session in asp.net?
What is app_code folder in asp net?
What are the 3 levels at which content pages can be attached to Master Page?