DatabaseRecord.FieldType
From Xojo Documentation
This item was deprecated in version 2019r2. Please use DatabaseRow.ColumnType as a replacement. |
Method
Returns the type of the field in the DatabaseRecord specified by idx. The fields are in a 0-based array. The field type codes are the same as those returned by FieldSchema.
Sample Code
This example displays the field type of the third field in the DatabaseRecord rec.
MsgBox(Str(rec.FieldType(2)))