8 references to Fetching
System.Data (8)
fx\src\data\System\Data\Common\AdapterUtil.cs (1)
868case (ConnectionState.Open|ConnectionState.Fetching):
fx\src\data\System\Data\Odbc\OdbcCommand.cs (4)
79if (ConnectionState.Fetching == cmdState) { 749cmdState = ConnectionState.Fetching; 752if(ConnectionState.Fetching != cmdState) { 805if (0 != (ConnectionState.Fetching & _connection.InternalState)) {
fx\src\data\System\Data\Odbc\OdbcConnection.cs (1)
561if (0 != (ConnectionState.Fetching & state)) {
fx\src\data\System\Data\OleDb\OLEDB_Util.cs (2)
312internal const int InternalStateFetching = (int) (ConnectionState.Open | ConnectionState.Fetching); 322internal const int InternalStateFetchingNot = (int) ~(ConnectionState.Fetching);