OdbcCommandBuilder::GetUpdateCommand Method ()
Gets the automatically generated OdbcCommand object required to perform updates at the data source.
Assembly: System.Data (in System.Data.dll)
Return Value
Type: System.Data.Odbc::OdbcCommand^The automatically generated OdbcCommand object required to perform updates.
You can use the GetUpdateCommand method for informational or troubleshooting purposes because it returns the OdbcCommand 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 OdbcDataAdapter.
After the SQL statement is first generated, you must explicitly call 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 Update or GetUpdateCommand.
Available since 1.1