SqlDataSourceView.Insert(IDictionary) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
int Insert(System::Collections::IDictionary ^ values);
public int Insert (System.Collections.IDictionary values);
override this.Insert : System.Collections.IDictionary -> int
Public Function Insert (values As IDictionary) As Integer
Parameters
- values
- 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
.
Returns
A value that represents the number of rows inserted into the underlying database.
Exceptions
The SqlDataSource cannot establish a connection with the underlying data source.
The CanInsert property is false
.
Remarks
The Insert method calls the ExecuteInsert method, passing the values
parameter.