DbFieldType Enumeration | |
This enum specifies the various field types that can appear in DBF files.
Namespace:
XSharp.RDD.Enums
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax Members
| Member name | Value | Description |
---|
| Unknown | 0 | Should not occur in DBF file |
| Character | 67 | 'C', uses len and dec |
| Date | 68 | 'D', 8 bytes |
| Logic | 76 | 'L', 1 byte |
| Memo | 77 | 'M', 4 or 10 bytes see Length |
| Number | 78 | 'N', uses len and dec |
| VOObject | 79 | 'O', is anybody using this ? |
| Blob | 87 | 'W' = Blob 4 or 10 bytes VFP type |
| Currency | 89 | 'Y' VFP Type 8 byte |
| Double | 66 | 'B' VFP Type, also '8' |
| DateTime | 84 | 'T' VFP Type can be 4 or 8 bytes |
| Float | 70 | 'F' VFP Type, uses len and dec |
| General | 71 | 'G' VFP type Ole 4 or 10 bytes |
| Integer | 73 | 'I' VFP Type , may be autoInc |
| Picture | 80 | 'P' VFP Type, 4 or 10 bytes |
| VarBinary | 81 | 'Q' VFP Type=, between 1 and 255 |
| VarChar | 86 | 'V' VFP Type |
| NullFlags | 48 | '0' VFP Type, contains Null Flags |
See Also