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