10 references to Fetching
System.Data.Common (1)
src\runtime\src\libraries\Common\src\System\Data\Common\AdapterUtil.cs (1)
344case (ConnectionState.Open | ConnectionState.Fetching):
System.Data.Odbc (6)
src\runtime\src\libraries\Common\src\System\Data\Common\AdapterUtil.cs (1)
344case (ConnectionState.Open | ConnectionState.Fetching):
System\Data\Odbc\OdbcCommand.cs (4)
71if (ConnectionState.Fetching == _cmdState) 817_cmdState = ConnectionState.Fetching; 821if (ConnectionState.Fetching != _cmdState) 878if (0 != (ConnectionState.Fetching & _connection!.InternalState))
System\Data\Odbc\OdbcConnection.cs (1)
642if (0 != (ConnectionState.Fetching & state))
System.Data.OleDb (3)
OleDb_Util.cs (2)
369internal const int InternalStateFetching = (int)(ConnectionState.Open | ConnectionState.Fetching); 379internal const int InternalStateFetchingNot = (int)~(ConnectionState.Fetching);
System\Data\Common\AdapterUtil.cs (1)
404case (ConnectionState.Open | ConnectionState.Fetching):