Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbCommandBuilder::GetUpdateCommand Method ()

 

Gets the automatically generated DbCommand object required to perform updates at the data source.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
DbCommand^ GetUpdateCommand()

Return Value

Type: System.Data.Common::DbCommand^

The automatically generated DbCommand object required to perform updates.

An application can use the GetUpdateCommand method for informational or troubleshooting purposes because it returns the DbCommand 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 command text, and then explicitly set that on the DbDataAdapter.

After the 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 SQL statements are first generated either when the application calls Update or GetUpdateCommand.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft