Microsoft ADO.NET 2.0 Step by Step Comments and Corrections (905037)



The information in this article applies to:

  • Microsoft ADO.NET 2.0 Step by Step, ISBN 0-7356-2164-0

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Microsoft ADO.NET 2.0 Step by Step, ISBN 0-7356-2164-0.

The following topics are covered:

  • Page 42: StateChangeEventArts referenced in place of StateChangeEventArgs
  • Page 44: Additional words included in the middle of step 4
  • Page 91: True and false behavior of the ContinueUpdateOnError property is reversed

MORE INFORMATION

Page 42: StateChangeEventArts referenced in place of StateChangeEventArgs

On page 42, the second sentence of the "StateChange Events" section reads:

"The event passes a StateChangeEventArts object to its handler, which, in turn, has two properties: OriginalState and CurrentState."

It should read:

"The event passes a StateChangeEventArgs object to its handler, which, in turn, has two properties: OriginalState and CurrentState."

Page 44: Additional words included in the middle of step 4

On page 44, the first sentence of step 4 reads:

"To Connection states, add the following display the previous and current Connection states, add the following code to the cnSql_StateChange event handler:"

It should read:

"To display the previous and current Connection states, add the following code to the cnSql_StateChange event handler:"

Page 91: True and false behavior of the ContinueUpdateOnError property is reversed

On Page 91, the second paragraph reads:

"The ContinueUpdateOnError property determines how the DataAdapter behaves if an error is encountered during an update. If this property is set to True, the DataAdapter throws an exception and stops the update. If it is set to False, the update to that DataRow is skipped, the error is placed in its RowError property, and processing continues with the next row."

It should read:

"The ContinueUpdateOnError property determines how the DataAdapter behaves if an error is encountered during an update. If this property is set to False, the DataAdapter throws an exception and stops the update. If it is set to True, the update to that DataRow is skipped, the error is placed in its RowError property, and processing continues with the next row."

Microsoft Press is committed to providing informative and accurate books. All comments and corrections listed above are ready for inclusion in future printings of this book. If you have a later printing of this book, it may already contain most or all of the above corrections.

The print number of the book is located on the copyright page in the form of a string of numbers. For example: "2 3 4 5 6 7 8 0 QWT 9 8 76 5 4". The first number in the string is the the print number. In this example, the print number is 2.

Modification Type:MinorLast Reviewed:8/15/2006
Keywords:kbfix kbinfo kbdocerr KB905037 kbAudEndUser