[Overview][Constants][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Field class to handle ansistring fields
Source position: db.pas line 452
type TStringField = class(TField) |
||
public |
||
constructor Create(); override; |
|
Create a new instance of the TStringField class |
procedure SetFieldType(); override; |
|
Set the field type |
FixedChar: Boolean; |
|
Is the string declared with a fixed length ? |
Transliterate: Boolean; |
|
Should the field value be transliterated when reading or writing |
Value: ; |
|
Value of the field as a string |
published |
||
EditMask: <NIL>; |
|
Specify an edit mask for an edit control |
Size: <NIL>; |
|
Maximum size of the string |
end; |
|
Field class to handle ansistring fields |
|
| | ||
|
Provide access to the contents of a single field in a record |
|
| | ||
| | ||
| | ||
TStringField is the class used whenever a dataset has to handle a string field type (data type ftString). This class overrides some of the standard TField methods to handle string data, and introduces some properties that are only pertinent for data fields of string type. It should never be necessary to create an instance of TStringField manually, a field of this class will be instantiated automatically for each string field when a dataset is opened.
|
Provide access to the contents of a single field in a record |
|
|
Field class for widestring data |
|
|
Base class for records-based data-access |