asp.net.ph

SqlCommandBuilder.GetInsertCommand Method

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;

Return Value

The automatically generated SqlCommand object required to perform inserts.

Remarks

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.

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