Contents Index GetInsertCommand method QuotePrefix property

ASA Programming Guide
  Adaptive Server Anywhere .NET Data Provider API Reference
    AsaCommandBuilder class

GetUpdateCommand method


Description 

The generated AsaCommand object that performs UPDATE operations on the database when an AsaDataAdapter.Update() is called.

Syntax 

AsaCommand GetUpdateCommand( )

Return value 

The automatically generated AsaCommand object required to perform updates.

Usage 

The GetUpdateCommand method returns the AsaCommand object to be executed, so it may be useful for informational or troubleshooting purposes.

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 value on the AsaDataAdapter.

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


Contents Index GetInsertCommand method QuotePrefix property