Explanation OleDbDataReader Class Provides a way of reading a forward-only stream of data rows from a data source. Example: OleDbConnection cn = new OleDbConnection(); OleDbCommand cmd = new OleDbCommand(); DataTable schemaTable; OleDbDataReader myReader; //Open a connection to the SQL Server Northwind database. cn.ConnectionString = "Provider=SQLOLEDB;Data Source=server;User ID=login; Password=password;Initial Catalog=Northwind";