SqlDataSourceView.ExecuteInsert Method
Assembly: System.Web (in system.web.dll)
protected int ExecuteInsert ( IDictionary values )
protected override function ExecuteInsert ( values : IDictionary ) : int
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 type | Condition |
|---|---|
| The SqlDataSource cannot establish a connection with the underlying data source. | |
| The current user does not have the correct permissions to gain access to the database. | |
| 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 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.