Esempio n. 1
0
 public void NextRow()
 {
     if (_currentRow == null)
     {
         _currentRow = _firstRow;
     }
     else
     {
         _currentRow = _currentRow.NextRow;
     }
 }
Esempio n. 2
0
        public void AddRow(object[] row)
        {
            QueryRow qr = new QueryRow(this, row);

            if (FirstRow == null)
            {
                _firstRow = qr;
                _lastRow  = qr;
            }
            else
            {
                _lastRow.NextRow = qr;
                _lastRow         = qr;
            }

            Rows++;
        }
Esempio n. 3
0
 internal void Reset()
 {
     _currentRow = null;
 }
Esempio n. 4
0
 private void LoadRecord()
 {
     Current = new QueryRow(_qd.ResultData, _qd.ResultData.CurrentRow.FieldData);
 }