This topic has not yet been rated - Rate this topic

SqlDataSourceView.ExecuteInsert Method

Performs an insert operation using the InsertCommand SQL string, any parameters that are specified in the InsertParameters collection, and the values that are in the specified values collection.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
protected override int ExecuteInsert(
	IDictionary values
)

Parameters

values
Type: System.Collections.IDictionary
An IDictionary of values used with the InsertCommand property to perform the insert database operation. If there are no parameters associated with the query or if the InsertCommand property is not a parameterized SQL query, pass null.

Return Value

Type: System.Int32
A value that represents the number of rows inserted into the underlying database.
Exception Condition
InvalidOperationException

The SqlDataSource cannot establish a connection with the underlying data source.

HttpException

The current user does not have the correct permissions to gain access to the database.

NotSupportedException

The CanInsert property is false.

The SqlDataSourceView class implements the inherited ExecuteInsert method to insert data into a database. Page developers and data-bound control authors do not call the ExecuteInsert method directly; instead, use the publicly exposed Insert method.

Before the insert operation is performed, the OnInserting method is called to raise the Inserting event. You can handle this event to examine the values of the parameters and to perform any preprocessing before an insert.

To perform an insert operation, the SqlDataSourceView object builds a DbCommand object using the InsertCommand text and any associated InsertParameters properties, and then executes the DbCommand object against the underlying database. After the insert completes, the OnInserted method is called to raise the Inserted event. You can handle this event to examine any return values and error codes and to perform any post-processing.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ