OleDbCommandBuilder.GetUpdateCommand Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the automatically generated OleDbCommand object required to perform updates at the data source.
Overloads
GetUpdateCommand() |
Gets the automatically generated OleDbCommand object required to perform updates at the data source. |
GetUpdateCommand(Boolean) |
Gets the automatically generated OleDbCommand object required to perform updates at the data source, optionally using columns for parameter names. |
Remarks
An application can use the GetUpdateCommand method for informational or troubleshooting purposes because it returns the OleDbCommand 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 OleDbDataAdapter.
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 be still be using information from the previous statement, which might not be correct. The SQL statements are first generated when the application calls either UpdateCommand or GetUpdateCommand.
GetUpdateCommand()
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
Gets the automatically generated OleDbCommand object required to perform updates at the data source.
public:
System::Data::OleDb::OleDbCommand ^ GetUpdateCommand();
public System.Data.OleDb.OleDbCommand GetUpdateCommand ();
override this.GetUpdateCommand : unit -> System.Data.OleDb.OleDbCommand
member this.GetUpdateCommand : unit -> System.Data.OleDb.OleDbCommand
Public Function GetUpdateCommand () As OleDbCommand
Returns
The automatically generated OleDbCommand object required to perform updates.
Remarks
An application can use the GetUpdateCommand method for informational or troubleshooting purposes because it returns the OleDbCommand 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 OleDbDataAdapter.
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 be still be using information from the previous statement, which might not be correct. The SQL statements are first generated when the application calls either UpdateCommand or GetUpdateCommand.
See also
Applies to
GetUpdateCommand(Boolean)
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
- Source:
- OleDbCommandBuilder.cs
Gets the automatically generated OleDbCommand object required to perform updates at the data source, optionally using columns for parameter names.
public:
System::Data::OleDb::OleDbCommand ^ GetUpdateCommand(bool useColumnsForParameterNames);
public System.Data.OleDb.OleDbCommand GetUpdateCommand (bool useColumnsForParameterNames);
override this.GetUpdateCommand : bool -> System.Data.OleDb.OleDbCommand
Public Function GetUpdateCommand (useColumnsForParameterNames As Boolean) As OleDbCommand
Parameters
- useColumnsForParameterNames
- Boolean
If true
, generate parameter names matching column names, if it is possible. If false
, generate @p1
, @p2
, and so on.
Returns
The automatically generated OleDbCommand object required to perform updates.
Remarks
An application can use the GetUpdateCommand method for informational or troubleshooting purposes because it returns the OleDbCommand 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 OleDbDataAdapter.
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 be still be using information from the previous statement, which might not be correct. The SQL statements are first generated when the application calls either UpdateCommand 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:
The ParameterNameMaxLength has been specified and its length is equal to or greater than the generated parameter name.
The generated parameter name meets the criteria specified in the ParameterNamePattern regular expression.
A ParameterMarkerFormat is specified.