Esempio n. 1
0
 public void Initialize(RowSetNavigatorData navigator)
 {
     navigator.Reset();
     while (navigator.HasNext())
     {
         this.Add(navigator.GetNext());
     }
 }
Esempio n. 2
0
 public void UnionAll(RowSetNavigatorData other)
 {
     other.Reset();
     while (other.HasNext())
     {
         object[] next = other.GetNext();
         this.Add(next);
     }
     other.Close();
     this.Reset();
 }