/// <summary>
 /// Disposes the current enumerator
 /// </summary>
 public void Dispose()
 {
     _currentLine = null;
     _data.Close();
     _data   = null;
     _parent = null;
 }
            /// <summary>
            /// our constructor (would rather have this protected, but it wasn't having it...)
            /// </summary>
            public AccessDBEnumerator(AccessDBValueReader parent)
            {
                _parent = parent;

                _data = _parent.StartStream();
                //Reset();
            }