Read value using OleDbDataReader : OleDbDataReader : Database C# Source Code


Custom Search

C# Source Code » Database » OleDbDataReader »

 

Read value using OleDbDataReader









    


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

public class Prepare {    
 public static void Main () { 
   String connect = "Provider=Microsoft.JET.OLEDB.4.0;data source=.\\Employee.mdb";
   OleDbConnection con = new OleDbConnection(connect);
   con.Open();  
   Console.WriteLine("Made the connection to the database");

   OleDbCommand cmd2 = con.CreateCommand();
   cmd2.CommandText = "SELECT First_name FROM Employee "
                                  + "WHERE ID > ?"; 
   OleDbParameter p3 = new OleDbParameter();
   cmd2.Parameters.Add(p3);
   p3.Value = new Decimal(0.0);
   OleDbDataReader reader = cmd2.ExecuteReader();
   while(reader.Read()) 
     Console.WriteLine("{0}", reader.GetString(0));
   reader.Close();


   con.Close();
 }
}

           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Database
» OleDbDataReader