UltraLite for MobileVB User's Guide
UltraLite for MobileVB API Reference
ULIndexSchema class
| Prototype | Description |
|---|---|
| ColumnCount As Integer (read-only) | Gets the number of columns in the index |
| ForeignKey As Boolean (read-only) | Indicates whether this is a foreign key. |
| ForeignKeyCheckOnCommit (read-only) | Indicates whether referential integrity is checked only when a commit is done (TRUE) or immediately (FALSE). |
| ForeignKeyNullable (read-only) | Indicates whether the foreign key columns allow NULL. |
| Name As String (read-only) | Gets the name of the index |
| PrimaryKey As Boolean (read-only) | Gets whether this is the primary key for this table. |
| ReferencedIndexName As String (read-only) | Gets the name of the index referenced by this index if it is a foreign key |
| ReferencedTableName As String (read-only) | Gets the name of the table referenced by this index if it is a foreign key |
| UniqueIndex As Boolean (read-only) | Indicates whether values in the index must be unique. |
| UniqueKey As Boolean (read-only) | Indicates whether the index is a unique constraint on a table. If True, the columns in the index are unique and do not permit NL values |