Purpose of CHARACTER BINARY and MEMO BINARY FieldsLast reviewed: April 30, 1996Article ID: Q127037 |
The information in this article applies to:
SUMMARYVisual FoxPro version 3.0 introduces several new data types including Character(binary) and Memo(binary). This article describes the purpose and implementation of these two new data types.
MORE INFORMATIONThe Character(binary) and Memo(binary) data types are provided for fields that should not be translated if the table is opened using a different code page. If the table is converted to another code page, the binary fields will not be translated. In all other respects, the Character(binary) and Memo(binary) fields are identical to the existing Character and Memo fields. You might use binary fields to store:
To specify that a field is going be binary with the CREATE or ALTER TABLE commands, use the NOCPTRANS clause, as in this example:
CREATE TABLE mytab (cLastName C(35) NOCPTRANS))This creates the cLastName field with a data type of Character(Binary). The TYPE function will return 'M' or 'C' for the binary memo or binary character field. This return value is the same as for a regular memo or character field.
|
Additional reference words: VFoxWin 3.00 proprietary encryption non ole
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |