ihFields Table

The ihFields table contains information about field elements that are specified in user-defined data types. The following table describes the columns of the ihFields table.

Table 1. ihFields Table
Column NameData TypeDescription
TypeNameVT_BSTRThe name of the user-defined type.
FieldNameVT_BSTRThe name of the field.
DescriptionVT_BSTRThe description of the field.
FieldValueDataTypeVT_BSTRThe data type of the field.
MasterFieldVT_BOOLIndicates whether the field is a master field.
RowCountVT_I4Indicates the maximum number of rows that can be returned. A value of 0 indicates that there is no limit to the number of rows returned.

ihFields Examples

Sample SQL statements for the ihFields table are outlined in the following examples.

Example: Retrieve All Fields for a Specific Type

SELECT * FROM ihfields WHERE typename='MyUserDefinedType'