asp.net.ph

SqlCommandBuilder.GetDeleteCommand Method

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;

Return Value

The automatically generated SqlCommand object required to perform deletions.

Remarks

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.

See Also

SqlCommandBuilder Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph