SqlCommandBuilder.GetUpdateCommand Method

Definition

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

Overloads

GetUpdateCommand()

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

GetUpdateCommand(Boolean)

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

Remarks

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.

GetUpdateCommand()

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

public:
 System::Data::SqlClient::SqlCommand ^ GetUpdateCommand();
public System.Data.SqlClient.SqlCommand GetUpdateCommand ();
override this.GetUpdateCommand : unit -> System.Data.SqlClient.SqlCommand
member this.GetUpdateCommand : unit -> System.Data.SqlClient.SqlCommand
Public Function GetUpdateCommand () As SqlCommand

Returns

The automatically generated SqlCommand object that is required to perform updates.

Remarks

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.

See also

Applies to

GetUpdateCommand(Boolean)

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

public:
 System::Data::SqlClient::SqlCommand ^ GetUpdateCommand(bool useColumnsForParameterNames);
public System.Data.SqlClient.SqlCommand GetUpdateCommand (bool useColumnsForParameterNames);
override this.GetUpdateCommand : bool -> System.Data.SqlClient.SqlCommand
Public Function GetUpdateCommand (useColumnsForParameterNames As Boolean) As SqlCommand

Parameters

useColumnsForParameterNames
Boolean

If true, generate parameter names matching column names if possible. If false, generate @p1, @p2, and so on.

Returns

The automatically generated SqlCommand object required to perform updates.

Remarks

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.

The default behavior, when generating parameter names, is to use @p1, @p2, and so on for the various parameters. Passing true for the useColumnsForParameterNames parameter lets you force the OleDbCommandBuilder to generate parameters based on the column names instead. This succeeds only if the following conditions are met:

For more information, see Generating Commands with CommandBuilders.

See also

Applies to