System.Data.SqlClient Namespace SqlCommandBuilder Class
Returns the automatically generated Transact-SQL statement required to perform inserts on the database when an application calls Update on the SqlDataAdapter.
[ VB ]
Public Function GetInsertCommand ( ) As SqlCommand
[ C# ]
public SqlCommand GetInsertCommand ( );
[ C++ ]
public: SqlCommand* GetInsertCommand ( );
[ JScript ]
public function GetInsertCommand ( ) : SqlCommand;
The automatically generated SqlCommand object required to perform inserts.
An application can use the GetInsertCommand method for informational or troubleshooting purposes because it returns the text of the statement to be executed.
You can also use GetInsertCommand as the basis of a modified command. For example, you might call GetInsertCommand and modify the CommandTimeout value, and then explicitly set that on the SqlDataAdapter.
After the Transact-SQL statement is first generated, the application must explicitly call RefreshSchema if it changes the statement in any way. Otherwise, the GetInsertCommand will be still be using information from the previous statement, which might not be correct. The Transact-SQL statements are first generated either when the application calls Update or GetInsertCommand.
SqlCommandBuilder Members