Loop through DataTable by DataRow : DataTable : ADO.Net C# Examples


C# Examples » ADO.Net » DataTable »

 

Loop through DataTable by DataRow









    
using  System;
using  System.Data;
using  System.Data.SqlClient;

class  MainClass
{
      static  void  Main(string[]  args)
      {
            string  connString  =  @"server  =  .\sqlexpress;integrated  security  =  true;database  =  northwind";
            string  sql  =  @"select  productname,unitprice  from  products  where  unitprice  <  20";
            SqlConnection  conn  =  new  SqlConnection(connString);
            try
            {
                  conn.Open();
                  SqlDataAdapter  da  =  new  SqlDataAdapter(sql,  conn);
                  DataTable  dt  =  new  DataTable();
                  da.Fill(dt);
                  foreach  (DataRow  row  in  dt.Rows)  
                  {
                        foreach  (DataColumn  col  in  dt.Columns)
                              Console.WriteLine(row[col]);
                  }
            }
            catch(Exception  e)
            {
                  Console.WriteLine("Error:  "  +  e);
            }
            finally
            {
                  conn.Close();
            }
      }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo ADO.Net
» DataTable