2 implementations of ExecuteReader
System.Data.Common (1)
System\Data\Common\DbCommand.cs (1)
117IDataReader IDbCommand.ExecuteReader(CommandBehavior behavior) => ExecuteDbDataReader(behavior);
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
57System.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)
419using (IDataReader dataReader = command.ExecuteReader(behavior | CommandBehavior.SchemaOnly | CommandBehavior.KeyInfo)) 637dataReader = command.ExecuteReader(behavior); 1511using (IDataReader dataReader = dataCommand.ExecuteReader(CommandBehavior.SequentialAccess))