Click or drag to resize

IDictionary Methods

The IDictionary type exposes the following members.

Methods
  NameDescription
Public methodCode exampleGetFieldId
maps 'person.contact_id' -> 1537 Return the internal fieldid from a database field, like Person.Concactid has fielded = 1537
Public methodCode exampleGetFieldLength
Returns the size of the column. String length Returns a string fields length, the last bit is a stop bit so if it returns 50 you may only add 49 characters
Public methodCode exampleGetFieldName
maps 1537 -> 'contact_id' Will return the fieldname from the internal fieldId provided, meaning NAME if you ask to get the fieldname of the field 1281 (Contact.Name)
Public methodCode exampleGetFieldType
Returns the column type for a given field. Maps 1536 -> enTypeInt, enTypeVstring Get the type of field - enTypeInt, enTypeVstring and so on.
Public methodCode exampleGetFullName
maps 1537 -> 'person.contact_id' Get the table and field name based on a fielded. Meaning GetFullName for 1281 would return ‘contact.name’
Public methodCode exampleGetTableIdFromFieldId
maps 1536 -> 6 Get the table id from the internal field_id: 1281 -> table number 5, see the database documentation for table numbers
Public methodCode exampleGetTableName
maps 1537 -> 'person' Will return the table name from the internal fieldId provided, meaning ‘CONTACT’ if you ask to get the table name of the field
Top
See Also