7 instantiations of OleDbDataReader
System.Data.OleDb (7)
OleDbCommand.cs (1)
665dataReader = new OleDbDataReader(_connection!, this, 0, this.commandBehavior);
OleDbConnectionInternal.cs (1)
644using (OleDbDataReader dataReader = new OleDbDataReader(Connection, null, 0, CommandBehavior.Default))
OleDbDataAdapter.cs (2)
342dataReader = new OleDbDataReader(null, null, 0, behavior); 393dataReader = new OleDbDataReader(null, null, 0, behavior);
OleDbDataReader.cs (2)
965reader = new OleDbDataReader(_connection, _command, 1 + Depth, _commandBehavior & ~CommandBehavior.CloseConnection); 2237using (OleDbDataReader dataReader = new OleDbDataReader(_connection, _command, int.MinValue, 0))
OleDbEnumerator.cs (1)
75OleDbDataReader dataReader = new OleDbDataReader(null, null, 0, CommandBehavior.Default);
50 references to OleDbDataReader
System.Data (1)
src\runtime\src\libraries\shims\System.Data\ref\System.Data.cs (1)
156[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.OleDb.OleDbDataReader))]
System.Data.OleDb (49)
ColumnBinding.cs (7)
17private readonly OleDbDataReader _dataReader; // HCHAPTER 52internal ColumnBinding(OleDbDataReader dataReader, int index, int indexForAccessor, int indexWithinAccessor, 158private OleDbDataReader DataReader() 943internal OleDbDataReader Value_HCHAPTER() 1338internal OleDbDataReader ValueChapter() 1340OleDbDataReader? value = (OleDbDataReader?)_value;
DbBindings.cs (3)
19private OleDbDataReader? _dataReader; 50internal Bindings(OleDbDataReader dataReader, bool ifIRowsetElseIRow, int count) : this(count) 243internal int AllocateForAccessor(OleDbDataReader? dataReader, int indexStart, int indexForAccessor)
OleDbCommand.cs (7)
601public new OleDbDataReader ExecuteReader() 611public new OleDbDataReader ExecuteReader(CommandBehavior behavior) 627private OleDbDataReader? ExecuteReaderInternal(CommandBehavior behavior, string method) 629OleDbDataReader? dataReader = null; 687OleDbDataReader.GenerateSchemaTable(dataReader, _icommandText!, behavior); 724nextResultsFailure = OleDbDataReader.NextResults(multipleResults, _connection!, this, out _recordsAffected); 952using (OleDbDataReader reader = ExecuteReaderInternal(CommandBehavior.Default, ADP.ExecuteScalar)!)
OleDbConnectionInternal.cs (3)
644using (OleDbDataReader dataReader = new OleDbDataReader(Connection, null, 0, CommandBehavior.Default)) 663OleDbDataReader? reader = null; 667reader = ReferenceCollection.FindItem<OleDbDataReader>(OleDbReferenceCollection.DataReaderTag, (dataReader) => cmd == dataReader.Command);
OleDbDataAdapter.cs (3)
150internal static void FillDataTable(OleDbDataReader dataReader, params DataTable[] dataTables) 336OleDbDataReader? dataReader = null; 390OleDbDataReader? dataReader = null;
OleDbDataReader.cs (18)
399newRow[isLong] = OleDbDataReader.IsLong(info.flags); 402newRow[allowDBNull] = OleDbDataReader.AllowDBNull(info.flags); 406newRow[allowDBNull] = OleDbDataReader.AllowDBNullMaybeNull(info.flags); 408newRow[isReadOnly] = OleDbDataReader.IsReadOnly(info.flags); 409newRow[isRowVersion] = OleDbDataReader.IsRowVersion(info.flags); 510if (OleDbDataReader.DoColumnDropFilter(dbColumnInfo.dwFlags)) 528bool islong = OleDbDataReader.IsLong(dbColumnInfo.dwFlags); 529bool isfixed = OleDbDataReader.IsFixed(dbColumnInfo.dwFlags); 933public new OleDbDataReader GetData(int ordinal) 944internal OleDbDataReader ResetChapter(int bindingIndex, int index, RowBinding rowbinding, int valueOffset) 949private OleDbDataReader GetDataForReader(IntPtr ordinal, RowBinding rowbinding, int valueOffset) 959OleDbDataReader? reader = null; 1589dbbindings[indexToBinding[index]] = bindings = new Bindings((OleDbDataReader)this, (null != _irowset), bindingCount); 2237using (OleDbDataReader dataReader = new OleDbDataReader(_connection, _command, int.MinValue, 0)) 2342bool islong = OleDbDataReader.IsLong(info.flags); 2343bool isfixed = OleDbDataReader.IsFixed(info.flags); 2474else if (OleDbDataReader.DoColumnDropFilter(info.flags)) 2493internal static void GenerateSchemaTable(OleDbDataReader dataReader, object handle, CommandBehavior behavior)
OleDbEnumerator.cs (6)
23OleDbDataReader dataReader = GetRootEnumerator(); 31public static OleDbDataReader GetEnumerator(Type type) 39internal static OleDbDataReader GetEnumeratorFromType(Type type) 48private static OleDbDataReader GetEnumeratorReader(object? value) 75OleDbDataReader dataReader = new OleDbDataReader(null, null, 0, CommandBehavior.Default); 85public static OleDbDataReader GetRootEnumerator()
OleDbReferenceCollection.cs (1)
31((OleDbDataReader)value).CloseReaderFromConnection(canceling);
RowBinding.cs (1)
120internal ColumnBinding[] SetBindings(OleDbDataReader? dataReader, Bindings bindings,