4 writes to _rowFetchedCount
System.Data.OleDb (4)
OleDbDataReader.cs (4)
762
_rowFetchedCount
= 0;
1705
hr = irowset.GetNextRows(_chapterHandle.HChapter, /*skipCount*/IntPtr.Zero, _rowHandleFetchCount, out
_rowFetchedCount
, ref rowHandlesPtr);
1734
_rowFetchedCount
= Math.Max((int)_rowFetchedCount, 0);
1789
_rowFetchedCount
= 0;
8 references to _rowFetchedCount
System.Data.OleDb (8)
OleDbDataReader.cs (8)
1428
if (0 ==
_rowFetchedCount
)
1438
return ((_currentRow <= (int)
_rowFetchedCount
) && _isRead);
1445
if (0 < (int)
_rowFetchedCount
)
1458
if (_currentRow == (int)
_rowFetchedCount
)
1733
_isRead = ((OleDbHResult.DB_S_ENDOFROWSET != hr) || (0 < (int)
_rowFetchedCount
));
1734
_rowFetchedCount = Math.Max((int)
_rowFetchedCount
, 0);
1777
Debug.Assert(0 < (int)
_rowFetchedCount
, "invalid _rowFetchedCount");
1781
hr = irowset.ReleaseRows(
_rowFetchedCount
, _rowHandleNativeBuffer!, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero);