SqlDataSourceView::Insert Method (IDictionary^)
.NET Framework (current version)
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.
Assembly: System.Web (in System.Web.dll)
Parameters
- values
-
Type:
System.Collections::IDictionary^
An IDictionary of parameters for the InsertCommand property to use to perform the insert database operation. If there are no parameters associated with the query or if the InsertCommand is not a parameterized SQL query, pass null.
Return Value
Type: System::Int32A 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. |
| NotSupportedException | The CanInsert property is false. |
The Insert method calls the ExecuteInsert method, passing the values parameter.
.NET Framework
Available since 2.0
Available since 2.0
Show: