2 writes to _commandSet
System.Data (2)
fx\src\data\System\Data\SqlClient\SqlDataAdapter.cs (2)
210_commandSet = new SqlCommandSet(); 247_commandSet = null;
16 references to _commandSet
System.Data (16)
fx\src\data\System\Data\SqlClient\SqlDataAdapter.cs (16)
169int commandIdentifier = _commandSet.CommandCount; 170_commandSet.Append((SqlCommand)command); 175_commandSet.Clear(); 191Debug.Assert(null != _commandSet && (0 < _commandSet.CommandCount), "no commands"); 193return _commandSet.ExecuteNonQuery(); 197Debug.Assert(commandIdentifier < _commandSet.CommandCount, "commandIdentifier out of range"); 198Debug.Assert(parameterIndex < _commandSet.GetParameterCount(commandIdentifier), "parameter out of range"); 199IDataParameter parameter = _commandSet.GetParameter(commandIdentifier, parameterIndex); 204Debug.Assert(commandIdentifier < _commandSet.CommandCount, "commandIdentifier out of range"); 205return _commandSet.GetBatchedAffected(commandIdentifier, out recordsAffected, out error); 222_commandSet.Connection = command.Connection; 223_commandSet.Transaction = command.Transaction; 224_commandSet.CommandTimeout = command.CommandTimeout; 245if (null != _commandSet) { 246_commandSet.Dispose();