Closes the System.Data.Odbc.OdbcDataReader object.
You must explicitly call the OdbcDataReader.Close method when you are finished using the System.Data.Odbc.OdbcDataReader to use the associated System.Data.Odbc.OdbcConnection 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.