Base/Data Types
From Apache OpenOffice Wiki
< Base
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Variable Types for Embedded Base Database
Numeric Types
2-1074 to (2-2-52)* 21023 could also be stated as 5e-324 to 1.7976931348623157e+308
Alphanumeric Types
| 2GB for 32 bit OS | Stores up to the max number of characters indicated by user. It accepts any UTF 8 character. | ||
| 2GB for 32 bit OS | Stores exactly the number of characters specified by user. Pads with trailing spaces for shorter strings. Accepts any UTF 8 character. | ||
| 2GB for 32 bit OS | Stores up to the specified number of characters. No padding (Same as long var char). | ||
| 2GB for 32 bit OS | Stores up to the specified number of characters. Comparisons are not case-sensitive, but stores capitals as you type them. |
Binary Types
| 2GB for 32 bit OS | Stores any array of bytes (images, sounds, etc). No validation required. | ||
| 2GB for 32 bit OS | Stores any array of bytes. No validation required. | ||
| 2GB for 32 bit OS | Stores any array of bytes. No validation required. |
Date time
| Name | Description | Format |
| Date | Stores month, day and year information | 1/1/99 to 1/1/9999 |
| Time | Stores hour, minute and second info | Seconds since 1/1/1970 |
| Timestamp | Stores date and time information |
Other Variable types
| Description | |
| Other | Stores serialized Java objects. User application must supply serialization routines. |
| Object | Same |