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

◆ UpdatingRowStatusErrors()

void System.Data.Common.DbDataAdapter.UpdatingRowStatusErrors ( RowUpdatingEventArgs rowUpdatedEvent,
DataRow dataRow )
inlineprivate

Definition at line 1465 of file DbDataAdapter.cs.

1466 {
1467 Exception ex = rowUpdatedEvent.Errors;
1468 if (ex == null)
1469 {
1470 ex = (rowUpdatedEvent.Errors = ADP.RowUpdatingErrors());
1471 }
1472 string message = ex.Message;
1473 dataRow.RowError += message;
1474 if (!base.ContinueUpdateOnError)
1475 {
1476 throw ex;
1477 }
1478 }

References System.Data.Common.ADP.RowUpdatingErrors().

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