SqlDataSourceView.Insert(IDictionary) 方法

定义

使用 InsertCommand SQL 字符串、InsertParameters 集合中指定的所有参数,以及指定的 values 集合中的值执行插入操作。

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

参数

values
IDictionary

IDictionary 属性用来执行插入数据库操作的参数的 InsertCommand。 如果不存在与查询关联的参数,或者如果 InsertCommand 不是参数化 SQL 查询,则传递 null

返回

Int32

一个值,该值表示插入到基础数据库中的行数。

例外

SqlDataSource 无法与基础数据源建立连接。

CanInsert 属性为 false

注解

该方法 Insert 调用 ExecuteInsert 该方法,传递 values 参数。

适用于

另请参阅