Contains the name of the adoAdapter element.
xsf:xdTitle
| Element | Description | 
|---|---|
| adoAdapter | Defines an ActiveX Data Objects (ADO) data adapter that retrieves data from an ADO data source for the specified data object. | 
<xsd:attribute name="name" type="xsf:xdTitle" use="optional" ></xsd:attribute>The name attribute is an optional attribute of the adoAdapter element.
The following is an example of the name attribute as it is used in the adoAdapter element:
<xsf:query>
   <xsf:adoAdapter name="EmpInformation"
      connectionString="Provider=Microsoft.Jet.OLEDB.4.0;
         Password="";User ID=Admin;
         Data Source=infnwind.mdb;Mode=Share Deny None;
         Extended Properties="";..."
      commandText="select [EmployeeID],[LastName],[FirstName] 
         from [Employees] as [Employees]" 
      queryAllowed="yes"
      submitAllowed="yes">
   </xsf:adoAdapter>
</xsf:query>