Check a list of field names for duplicate entries.
Source position: db.pas line 1357
| public procedure TFields.CheckFieldNames( | 
| const Value: string | 
| ); | 
| Value | 
 | List of field names to check. | 
CheckFieldNames splits Value in a list of fieldnames, using semicolon as a separator. For each of the fieldnames obtained in this way, it calls CheckFieldName.
Spaces are not discarded, so leaving a space after of before a fieldname will not find the fieldname, and will yield a false negative result.
| 
 | Name of the field. | |
| 
 | Check field name for duplicate entries. | |
| TFields.Find |