These steps are part of the larger tasks of creating a table and altering a table. When you complete the steps for adding columns, return to either creating a table or altering a table.
To add columns:
The default column type is a nullable integer. If you want to accept
this default, click Apply to create the column. Otherwise, continue
with the next step.
A field procedure is a user-written exit routine to transform values in a single short-string column, typically to alter the sorting sequence of values entered in the column. When values in the column are changed, or new values inserted, the field procedure is invoked for each value, and can transform that value (encode it) in any way. The encoded value is then stored. When values are retrieved from the column, the field procedure is invoked for each encoded value and decodes it back to the original string values.
You can specify a field procedure only if
you did not specify a default value
on the Built-in Type page.
For example, to use a procedure FIELDPROC(P1,P2,P3)
as the field procedure for this column, type
FIELDPROC in the Field procedure field and 19,42,35 in
the Field procedure parameters field. In this situation,
19, 42, and 35 correspond to P1, P2, and
P3 respectively.
Depending on the task that you were doing when you added this column, return to either creating a table or altering a table.