Read result set from OleDbDataReader : OleDbDataReader : ADO.Net C# Examples


C# Examples » ADO.Net » OleDbDataReader »

 

Read result set from OleDbDataReader









    
using  System;
using  System.Data;
using  System.Data.OleDb;

class  MainClass
{
      static  void  Main(string[]  args)
      {
            string  connString  =  "provider=sqloledb;server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated  Security=SSPI";

            string  sql  =  @"select  *  from  employee";

            OleDbConnection  conn  =  null;
            OleDbDataReader  reader  =  null;

            try
            {
                  conn  =  new  OleDbConnection(connString);
                  conn.Open();

                  OleDbCommand  cmd  =  new  OleDbCommand(sql,  conn);
                  reader  =  cmd.ExecuteReader();

                  Console.WriteLine("Querying  database  {0}  with  query  {1}\n",  conn.Database,  cmd.CommandText  );

                  while(reader.Read())  {
                        Console.WriteLine("{0}  |  {1}",  reader["FirstName"].ToString().PadLeft(10),  reader[1].ToString().PadLeft(10));
                  }
            }
            catch  (Exception  e)
            {
                  Console.WriteLine("Error:  "  +  e);
            }
            finally
            {
                  reader.Close();
                  conn.Close();
            }
      }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo ADO.Net
» OleDbDataReader