articles

Home / DeveloperSection / Articles / DataTable

DataTable

Amit Singh8715 01-Sep-2010

DataTable is used to store data in memory in SQL database. DataTable contains a collection of constraints .in data base datatable is a collection of rows and columns. Datatable is ideal for this purpose, as you can take objects from memory and display the results in controls such as DataGridView in Windows Forms. Here are the simply c sharp example which shows DataTable

Below are the examples which shows about DataTable
//these lines are for creating a new connection by passing server name,uid,password and name of the database as here mind.
 
SqlConnection con = newSqlConnection("server=abc-pc1\\sqlexpress; uid=sa; password=sa; database=mind");
//open connection      
con.Open();
//create a data adapter and invoking the command.
SqlDataAdapter ad = newSqlDataAdapter("select * from Employee", con);
DataSet ds=new DataSet();
ad.Fill(ds,"Employee");
//Creating a Datatable object
DataTable dt = new DataTable();
              
dt = ds.Tables["Employee"];
 
//  close the coonection
Con.close();

Updated 30-Nov-2017

Leave Comment

Comments

Liked By