'Declaration Public Overloads Shadows Function GetUpdateCommand() As DB2Command
public new DB2Command GetUpdateCommand()
Return Value
The DB2Command object to be executed.
'Declaration Public Overloads Shadows Function GetUpdateCommand() As DB2Command
public new DB2Command GetUpdateCommand()
You can also use GetUpdateCommand() as the basis of a modified command. For example, you might call GetUpdateCommand() and modify the CommandText value, and then explicitly set that on the DB2DataAdapter.
After the SQL statement is first generated, you must explicitly call Devart.Common.DbCommandBuilderBase.RefreshSchema if it changes the statement in any way. Otherwise, the GetUpdateCommand() still will be using information from the previous statement, which might not be correct. The SQL statements are first generated when the application calls either System.Data.Common.DbDataAdapter.Update() or GetUpdateCommand().