DB2CommandBuilder.GetInsertCommand Method

Gets the automatically generated DB2Command object required to perform insertions at the database.

Namespace:
IBM.Data.DB2
Assembly:
IBM.Data.DB2 (in IBM.Data.DB2.dll)

Syntax


[Visual Basic]
Public Function GetInsertCommand() As DB2Command

[C#]
public DB2Command
 GetInsertCommand();
[C++]
public: DB2Command
* GetInsertCommand();
[JScript]
public function GetInsertCommand() : DB2Command
;

Return value

The automatically generated DB2®Command object required to perform insertions.

Remarks

You can use the GetInsertCommand method for informational or troubleshooting purposes because it returns the DB2Command object to be executed. You can also use GetInsertCommand to insert rows in the DB2DataAdapter.

You can also use GetInsertCommand as the basis of a modified command. For example, you might call GetInsertCommand and modify the DB2Command.CommandTimeout value, and then explicitly set that on the DB2DataAdapter .

After the SQL statement is first generated, you must explicitly call RefreshSchema if it changes the statement in any way. Otherwise, the GetInsertCommand 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 GetInsertCommand.