Closes the System.Data.OleDb.OleDbDataReader object.
You must explicitly call the OleDbDataReader.Close method when you are through using the System.Data.OleDb.OleDbDataReader to use the associated System.Data.OleDb.OleDbConnection for any other purpose.
Do not call Close or Dispose on a Connection, a DataReader, or any other managed object in the Finalize method of your class. In a finalizer, you should only release unmanaged resources that your class owns directly. If your class does not own any unmanaged resources, do not include a Finalize method in your class definition. For more information, see Garbage Collection.