Dataloader/MP Reference Manual

Table Of Contents
Creating a Customized Version of DataLoader/MP
DataLoader/MP Reference Manual424148-003
5-40
The MAKE Routine for NM DataLoader/MP
DTLToUpper
This procedure changes a standard, null-terminated C string to uppercase letters.
The syntax for this procedure follows:
The MAKE Routine for NM DataLoader/MP
After you have decided on the default or custom user exits and routines you need to
use, you will need to create a version of DataLoader/MP that includes them. A TACL
routine, MAKE, simplifies this task. It links the standard DataLoader/MP code with a
linkable object file you have created (oexits), which should contain the user exits you
want to customize to create your customized executable object file. MAKE can also
SQL compile the customized object file (which is required if your custom user exits
contain embedded SQL). To use the MAKE routine with the native mode version of
DataLoader/MP, use this syntax:
option
is any of the following:
OUT file
CATALOG SQL-catalog
DLSUBVOL subvol
file
specifies a file into which all the listing output for MAKE will go. If OUT is
omitted, the listing goes to TACL's OUT file, which is usually the terminal.
SQL-catalog
specifies a SQL catalog in which the compiled SQL program will be registered.
If CATALOG is not specified, the default catalog will be used.
subvol
specifies the subvolume from which to get the relinkable DataLoader/MP object
file and the default user exits. If DLSUBVOL is not specified, MAKE expects to
find them in the same subvolume MAKE is in.
void DTLToUpper( char* String );
MAKE [ / option [, option]... / ] steps new oexits...