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