3 instantiations of ChapterHandle
System.Data.OleDb (3)
SafeHandles.cs (3)
112internal static readonly ChapterHandle DB_NULL_HCHAPTER = new ChapterHandle(IntPtr.Zero); 121return new ChapterHandle(chapteredRowset, binding, valueOffset); 131return new ChapterHandle(chapter);
20 references to ChapterHandle
System.Data.OleDb (20)
OleDbCommand.cs (1)
674dataReader.InitializeIRowset(executeResult, ChapterHandle.DB_NULL_HCHAPTER, _recordsAffected);
OleDbConnectionInternal.cs (1)
646dataReader.InitializeIRowset(rowset, ChapterHandle.DB_NULL_HCHAPTER, IntPtr.Zero);
OleDbDataAdapter.cs (2)
340ChapterHandle chapterHandle = ChapterHandle.CreateChapterHandle(chapter);
OleDbDataReader.cs (10)
35private ChapterHandle _chapterHandle = ChapterHandle.DB_NULL_HCHAPTER; 102internal void InitializeIRowset(object? result, ChapterHandle chapterHandle, IntPtr recordsAffected) 105if ((null == _connection) || (ChapterHandle.DB_NULL_HCHAPTER != chapterHandle)) 786ChapterHandle chapter = _chapterHandle; 787_chapterHandle = ChapterHandle.DB_NULL_HCHAPTER; 789if (ChapterHandle.DB_NULL_HCHAPTER != chapter) 964ChapterHandle chapterHandle = ChapterHandle.CreateChapterHandle(result, rowbinding, valueOffset); 2239dataReader.InitializeIRowset(rowset, ChapterHandle.DB_NULL_HCHAPTER, IntPtr.Zero);
OleDbEnumerator.cs (1)
76dataReader.InitializeIRowset(value, ChapterHandle.DB_NULL_HCHAPTER, ADP.RecordsUnaffected);
SafeHandles.cs (5)
112internal static readonly ChapterHandle DB_NULL_HCHAPTER = new ChapterHandle(IntPtr.Zero); 115internal static ChapterHandle CreateChapterHandle(object chapteredRowset, RowBinding binding, int valueOffset) 119return ChapterHandle.DB_NULL_HCHAPTER; 125internal static ChapterHandle CreateChapterHandle(IntPtr chapter) 129return ChapterHandle.DB_NULL_HCHAPTER;