This topic has not yet been rated - Rate this topic

SqlCommandBuilder.GetUpdateCommand Method

Gets the automatically generated SqlCommand object required to perform updates on the database.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

  Name Description
Public method GetUpdateCommand() Gets the automatically generated SqlCommand object required to perform updates on the database.
Public method GetUpdateCommand(Boolean) Gets the automatically generated SqlCommand object required to perform updates on the database.
Top

An application can use the GetUpdateCommand method for informational or troubleshooting purposes because it returns the SqlCommand object to be executed.

You can also use GetUpdateCommand as the basis of a modified command. For example, you might call GetUpdateCommand and modify the CommandTimeout value, and then explicitly set that on the SqlDataAdapter.

After the Transact-SQL statement is first generated, the application must explicitly call RefreshSchema if it changes the statement in any way. Otherwise, the GetUpdateCommand will still be using information from the previous statement, which might not be correct. The Transact-SQL statements are first generated when the application calls either Update or GetUpdateCommand.

For more information, see Generating Commands with CommandBuilders (ADO.NET).

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.