Reading Access Data with OleDbConnection : OleDbConnection « ADO.Net « C# / CSharp Tutorial






using System;
using System.Data;            
using System.Data.OleDb;      
using System.Collections.Generic;
using System.Text;

  class Program{
    static void Main(string[] args){
           OleDbConnection thisConnection = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=nwind.mdb");
          thisConnection.Open();
    
          OleDbCommand thisCommand = thisConnection.CreateCommand();
    
          thisCommand.CommandText = "SELECT CustomerID, CompanyName FROM Customers";
    
          OleDbDataReader thisReader = thisCommand.ExecuteReader();
    
          while (thisReader.Read()){
             Console.WriteLine("\t{0}\t{1}",
             thisReader["CustomerID"], thisReader["CompanyName"]);
          }
          thisReader.Close();
          thisConnection.Close();
       }  

  }








32.6.OleDbConnection
32.6.1.Output properties for OleDbConnection
32.6.2.OleDbConnection connection state
32.6.3.Connection Pooling Sample
32.6.4.Connecting to an OLE DB Data Source
32.6.5.Connection for OleDb
32.6.6.Retrieving Data from a Text File
32.6.7.Connect to SqlServer using OleDbConnection
32.6.8.Retrieves a list of tables in a database
32.6.9.Reading Access Data with OleDbConnection