Confused between SqlCommand & SqlDataAdapter
everyone I am a student and new to .NET and specially MVC3 development but for one of my project I’ve to work over it and so going through the learning phase Issue and confusion I am facing is regarding DB-Connectivity, whast I leanree d regarding retrieving records from a database is something like this: //Method One: var conn = new SqlConnection(conString.ConnectionString); const string cmdString = "Select * FROM table"; var cmd = new SqlCommand(cmdString, conn); var mySqlDataAdapter = new SqlDataAdapter(cmd); mySqlDataAdapter = new SqlDataAdapter(cmd); mySqlDataAdapter.Fill(myDataSet,