Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ UpdatedRowStatusSkip()

int System.Data.Common.DbDataAdapter.UpdatedRowStatusSkip ( BatchCommandInfo[] batchCommands,
int commandCount )
inlineprivate

Definition at line 1451 of file DbDataAdapter.cs.

1452 {
1453 int num = 0;
1454 for (int i = 0; i < commandCount; i++)
1455 {
1456 DataRow row = batchCommands[i]._row;
1457 if (((DataRowState.Detached | DataRowState.Unchanged) & row.RowState) != 0)
1458 {
1459 num++;
1460 }
1461 }
1462 return num;
1463 }

Referenced by System.Data.Common.DbDataAdapter.UpdatedRowStatus().