3 instantiations of ChapterHandle
System.Data (3)
fx\src\data\System\Data\OleDb\SafeHandles.cs (3)
113
internal static readonly ChapterHandle DB_NULL_HCHAPTER = new
ChapterHandle
(IntPtr.Zero);
120
return new
ChapterHandle
(chapteredRowset, binding, valueOffset);
128
return new
ChapterHandle
(chapter);
20 references to ChapterHandle
System.Data (20)
fx\src\data\System\Data\OleDb\OleDbCommand.cs (1)
623
dataReader.InitializeIRowset(executeResult,
ChapterHandle
.DB_NULL_HCHAPTER, _recordsAffected);
fx\src\data\System\Data\OleDb\OleDbConnectionInternal.cs (1)
595
dataReader.InitializeIRowset(rowset,
ChapterHandle
.DB_NULL_HCHAPTER, IntPtr.Zero);
fx\src\data\System\Data\OleDb\OleDbDataAdapter.cs (2)
364
ChapterHandle
chapterHandle =
ChapterHandle
.CreateChapterHandle(chapter);
fx\src\data\System\Data\OleDb\OleDbDataReader.cs (10)
45
private
ChapterHandle
_chapterHandle =
ChapterHandle
.DB_NULL_HCHAPTER;
109
internal void InitializeIRowset(object result,
ChapterHandle
chapterHandle, IntPtr recordsAffected) {
111
if ((null == _connection) || (
ChapterHandle
.DB_NULL_HCHAPTER != chapterHandle)) { // MDAC 59629
733
ChapterHandle
chapter = _chapterHandle;
734
_chapterHandle =
ChapterHandle
.DB_NULL_HCHAPTER;
736
if (
ChapterHandle
.DB_NULL_HCHAPTER != chapter) { // MDAC 81441
881
ChapterHandle
chapterHandle =
ChapterHandle
.CreateChapterHandle(result, rowbinding, valueOffset);
2014
dataReader.InitializeIRowset(rowset,
ChapterHandle
.DB_NULL_HCHAPTER, IntPtr.Zero);
fx\src\data\System\Data\OleDb\OleDbEnumerator.cs (1)
72
dataReader.InitializeIRowset(value,
ChapterHandle
.DB_NULL_HCHAPTER, ADP.RecordsUnaffected);
fx\src\data\System\Data\OleDb\SafeHandles.cs (5)
113
internal static readonly
ChapterHandle
DB_NULL_HCHAPTER = new ChapterHandle(IntPtr.Zero);
116
internal static
ChapterHandle
CreateChapterHandle(object chapteredRowset, RowBinding binding, int valueOffset) {
118
return
ChapterHandle
.DB_NULL_HCHAPTER;
124
internal static
ChapterHandle
CreateChapterHandle(IntPtr chapter) {
126
return
ChapterHandle
.DB_NULL_HCHAPTER;