ADOAdapter2.Command 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 对象的 SQL 命令字符串文本 ADOAdapterObject 。
public:
property System::String ^ Command { System::String ^ get(); void set(System::String ^ value); };
public string Command { get; set; }
member this.Command : string with get, set
Public Property Command As String
属性值
实现
示例
在以下示例中,ADOAdapter 对象的 Command 属性用于通过辅助数据源“Employees”查询 Northwind 数据库的“Employees”表。 EmployeeID
返回的记录的 与节点的值my:field2
匹配。 此示例要求 my:field2
在主数据源中绑定到视图中的文本框,该视图中包含一个用于调用以下代码的按钮:
// retrieve the Employees Adapter from the DataAdapters collection
ADOAdapter employeesDA = (ADOAdapter)thisXDocument.DataAdapters["Employees"];
// get employee’s ID from the main DOM
string employeeID = thisXDocument.DOM.selectSingleNode("//my:field2").text;
// Change the ADOAdapter’s command to retrieve the record of the Employee’s ID entered
// by the user
employeesDA.<span class="label">Command </span>= "select * from Employees where EmployeeID = " + employeeID;
// get DataObject from the DataObjects collection and call Query to refresh
// the data object
DataObject employeesDO = thisXDocument.DataObjects["Employees"];
employeesDO.Query();
注解
ADOAdapter 对象的 Command 属性包含 SQL 命令文本,ADO 数据适配器使用该文本向 ActiveX 数据对象/OLEDB 外部数据源提交数据以及从该数据源检索数据。
注意:ADOAdapter 对象仅限于 Microsoft SQL Server 和 Microsoft Access 数据库。