2 implementations of ExecuteReader
System.Data.Common (1)
System\Data\Common\DbCommand.cs (1)
117
IDataReader IDbCommand.
ExecuteReader
(CommandBehavior behavior) => ExecuteDbDataReader(behavior);
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
57
System.Data.IDataReader System.Data.IDbCommand.
ExecuteReader
(System.Data.CommandBehavior behavior) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
3 references to ExecuteReader
System.Data.Common (3)
System\Data\Common\DbDataAdapter.cs (3)
419
using (IDataReader dataReader = command.
ExecuteReader
(behavior | CommandBehavior.SchemaOnly | CommandBehavior.KeyInfo))
637
dataReader = command.
ExecuteReader
(behavior);
1511
using (IDataReader dataReader = dataCommand.
ExecuteReader
(CommandBehavior.SequentialAccess))