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:
virtual int ExecuteInsert (
	IDictionary^ values
) override
protected int ExecuteInsert (
	IDictionary values
)
protected override function ExecuteInsert (
	values : IDictionary
) : int
Not applicable.

Parameters

values

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 a null reference (Nothing in Visual Basic).

Return Value

A value that represents the number of rows inserted into the underlying database.

Exception typeCondition

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.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: