Index built-in tag

Usage:
<Index Name=value Field=value>

Name

Name should be a unique identifier for the index, except for the value "primary" which must be included exactly once in each table.

Field

Tells Arcos the field on which to build an index. To make a compound key, FieldName must be an array of fields. To do this use a list of Property tags, as shown in this example:

      <Index Name="primary">
         <Property Name="Field">
            <Property Value="UserID" />
            <Property Value="SectionID" />
         </Property>
      </Index>