ObjectDataSourceView.ExecuteInsert Method
Assembly: System.Web (in system.web.dll)
protected int ExecuteInsert ( IDictionary values )
protected override function ExecuteInsert ( values : IDictionary ) : int
Not applicable.
Parameters
- values
A IDictionary of parameters used with the InsertMethod property to perform the insert operation. If there are no parameters associated with the method, pass a null reference (Nothing in Visual Basic).
Return Value
The number of rows inserted; otherwise, -1, if the number is not known. For more information, see Insert.| Exception type | Condition |
|---|---|
| The CanInsert property returns false. | |
| values is a null reference (Nothing in Visual Basic) or empty. |
The ObjectDataSourceView class implements the inherited ExecuteInsert method to insert data into an underlying data store using a business object. Page developers and data-bound control authors do not call the ExecuteInsert method directly; instead, use the publicly exposed Insert method.
Before the insert 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 perform any preprocessing before the Insert method is called.
To perform an insert operation, the ObjectDataSourceView control uses reflection to call the method that is identified by the InsertMethod property and any associated parameters that are in the values collection, and then executes it. After the operation completes, the OnInserted method is called to raise the Inserted event. You can handle this event to examine any return values, error codes, and perform any post-processing.
For more information on returning the number of rows inserted, see Insert.