The ESQL/C processors obtain the code set for use in ESQL/C source files from the client locale. Within an ESQL/C source file, you can use non-ASCII characters for the following program objects:
For more information, see Naming Database Objects.
For example, in an ESQL/C program, this use of multibyte characters is valid:
char A1A2[20], B1B2[20];
...
EXEC SQL select col1, col2 into :A1A2 :B1B2;
For more information on ESQL/C host variables, see Using Non-ASCII Characters in Host Variables.
For example, in an ESQL/C program, the following use of multibyte characters is valid:
EXEC SQL insert into tbl1 (nchr1) values 'A1A2B1B2';
To use non-ASCII characters in your ESQL/C source file, the client locale must support them. For information about the use of non-ASCII characters, see Non-ASCII Characters in Identifiers.
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]