A string property that contains the ActiveX Data Objects (ADO) SQL command text to be used for querying the data from the specified data source.
xsd:stringThe commandText attribute is a required attribute of the adoAdapter element.
The following is an example of the commandText attribute as it is used in the adoAdapter element:
<xsf:query>
   <xsf:adoAdapter 
      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>