How to get data in DataSet or DataTable with C#

The C# Part


string connStr = ConfigurationManager.ConnectionStrings["myConnectionString"].ConnectionString;
SqlConnection mySqlConnection = new SqlConnection(connStr);
mySqlConnection.Open();
SqlDataAdapter da = new SqlDataAdapter("select * from Person", mySqlConnection);
da.Fill(dt);


The Web.Config Part (windows authentication)




<connectionStrings>
  <add name="myConnectionString" connectionString="server=CHILLAX-339\SQLEXPRESS;database=TestingDB;Integrated Security=SSPI;"/>
 </connectionStrings>

Comments

Popular Posts

GREYCstoration Oil Paint plugin for Photoshop

Apple iPhone sending SMS automatically 00447786205094

SharePoint online hub navigation not updating for other users

Service Bus Gateway service stuck at Starting

How to move SharePoint list items to a folder and subfolders in the same list using C# programmatically?