Fields and Strings

Chapter Updated 11/21/22




The main objective of this chapter is to provide basic information regarding various field types supported by the library.

Field names can be up to ten bytes in length and can contain characters, numbers or special characters in the name. The field methods are used to manipulate the data in a record of a data file. There are several types of fields.

Field Types

TypeSizeAllowable ValuesSchema Value
Numeric0 - 17(include sign and decimal point+ - . 0 through 9XB_NUMERIC_FLD
Character0 - 254AnythingXB_CHAR_FLD
Date8CCYYMMDDXB_DATE_FLD
Floating Point0 - 17 (includes sign and decimal point+ - . 0 through 9XB_FLOAT_FLD
Logical1? Y y N n T t F f (? - uninitialized)XB_LOGICAL_FLD
MemoFixed length portion - 10
Variable length 0 - 32760
Type III - Text
Type IV - Anything
XB_MEMO_FLD


Field names, types and lengths are defined when a data file is created. After the file is created, the field characteristics can not be changed. To change field characteristics, a new database table must be defined with the new field requirements.

Memo Fields

Memo fields are variable length data fields which are stored in two parts. This first part is a ten byte field which is stored in the fixed length record of the .DBF file. The variable data is stored in a seperate .DBT file in 512 byte blocks. The ten byte field in the fixed length portion of the record points to a .DBT block number.

There are two versions of memo data files type III and type IV. Type IV is more advanced in that released space can be reused and it also supports BLOB data. The type III file is older technology, does not support dynamic space reclamation and only supports string data. See method xbDbf::SetVersion for controlling which version type you are using.

To utilize memo fields, the application program must allocate a buffer which is large enough to handle the memo data.

Fields and Field Numbers

The Xbase routines can access field data via using field names or field numbers. Field numbers are numbered 0-n where the first field in a datafile is field 0 going through the last field n. Accessing fields by number is slightly more efficient than accessing by name.

Strings

Xbase64 includes support for a string class xbString. The xbString class interface was originally derived from the Draft Standard C++ Library by P.J. Plauger and modified. If you are familiar with other string classes, this one should be similar. Strings can be used to manage strings of character data.