sybdbex.h header file

All the example programs reference the example header file, sybdbex.h. The contents of sybdbex.h are as follows:

/*
 ** sybdbex.h
 **
 ** This is the header file that goes with the 
 ** Sybase DB-Library example programs. 
 **
 **
 */
 
 #define USER             "user"
 #define PASSWORD         "server_password"
 #define LANGUAGE         "us_english"
 #define SQLBUFLEN        255
 #define ERR_CH           stderr
 #define OUT_CH           stdout
 extern void              error();
 extern int               err_handler();
 extern int               msg_handler();

All the examples except the data conversion example program contain these lines:

DBSETLUSER(login, USER);

DBSETLPWD(login, PASSWORD);

The changes made to the EX_USERNAME, EX_PASSWORD, and LANGUAGE variables include: