This section covers the following topics:
The script file bldapp, in sqllib/samples/cpp, contains the commands to build a sample C++ program.
The first parameter, $1, specifies the name of your source file. This is the only required parameter, and the only one needed for DB2 API programs that do not contain embedded SQL. Building embedded SQL programs requires a connection to the database so three optional parameters are also provided: the second parameter, $2, specifies the name of the database to which you want to connect; the third parameter, $3, specifies the user ID for the database, and $4 specifies the password.
For an embedded SQL program, bldapp passes the parameters to the precompile and bind file, embprep. If no database name is supplied, the default sample database is used. The user ID and password parameters are only needed if the instance where the program is built is different from the instance where the database is located.
#! /bin/ksh # bldapp script file -- Linux # Builds a C++ application program. # Usage: bldapp <prog_name> [ <db_name> [ <userid> <password> ]] # Set DB2PATH to where DB2 will be accessed. # The default is the standard instance path. DB2PATH=$HOME/sqllib # If an embedded SQL program, precompile and bind it. if [[ -f $1".sqC" ]] then embprep $1 $2 $3 $4 # Compile the utilemb.C error-checking utility. g++ -I$DB2PATH/include -c utilemb.C else # Compile the utilapi.C error-checking utility. g++ -I$DB2PATH/include -c utilapi.C fi # Compile the program. g++ -I$DB2PATH/include -c $1.C if [[ -f $1".sqC" ]] then # Link the program with utilemb.o g++ -o $1 $1.o utilemb.o -L$DB2PATH/lib -Wl,-rpath,$DB2PATH/lib -ldb2 else # Link the program with utilapi.o g++ -o $1 $1.o utilapi.o -L$DB2PATH/lib -Wl,-rpath,$DB2PATH/lib -ldb2 fi |
Compile and Link Options for bldapp |
---|
Compile Options:
|
Link Options:
Refer to your compiler documentation for additional compiler
options.
|
To build the non-embedded SQL sample program client from the source file client.C , enter:
bldapp client
The result is an executable file, client. You can run the executable file against the sample database by entering:
client
There are three ways to build the embedded SQL application, updat, from the source file updat.sqC :
bldapp updat
bldapp updat database
bldapp updat database userid password
The result is an executable file, updat.
There are three ways to run this embedded SQL application:
updat
updat database
updat database userid password
Note: | Please see the information for building C++ stored procedures in "C++ Considerations for UDFs and Stored Procedures". |
The script file bldsrv, in sqllib/samples/cpp, contains the commands to build an embedded SQL stored procedure. The script file compiles the stored procedure into a shared library that can be called by a client application.
The first parameter, $1, specifies the name of your source file. The second parameter, $2, specifies the name of the database to which you want to connect. Since the stored procedure must be build on the same instance where the database resides, you do not need parameters for user ID and password.
Only the first parameter, the source file name, is required. Database name is optional. If no database name is supplied, the program uses the default sample database. The script file uses the source file name, $1, for the shared library name.
#! /bin/ksh # bldsrv script file -- Linux # Builds a C++ stored procedure # Usage: bldsrv <prog_name> [ <db_name> ] # Set DB2PATH to where DB2 will be accessed. # The default is the standard instance path. DB2PATH=$HOME/sqllib # Precompile and bind the program. embprep $1 $2 # Compile the program. g++ -I$DB2PATH/include -c $1.C # Link the program and create a shared library. g++ -shared -o $1 $1.o -L$DB2PATH/lib -Wl,-rpath,$DB2PATH/lib -ldb2 # Copy the shared library to the function subdirectory. # The user must have write permission to this directory. rm -f $DB2PATH/function/$1 cp $1 $DB2PATH/function
Compile and Link Options for bldsrv |
---|
Compile Options:
|
Link Options:
Refer to your compiler documentation for additional compiler
options.
|
To build the sample program spserver from the source file spserver.sqC , if connecting to the sample database, enter:
bldsrv spserver
If connecting to another database, also enter the database name:
bldsrv spserver database
The script file copies the shared library to the server in the path sqllib/function.
Next, catalog the stored procedures by running the spcreate.db2 script on the server. First, connect to the database:
db2 connect to sample
If the stored procedures were previously cataloged, you can drop them with this command:
db2 -td@ -vf spdrop.db2
Then catalog them with this command:
db2 -td@ -vf spcreate.db2
Then, stop and restart the database to allow the new shared library to be recognized. If necessary, set the file mode for the shared library so the DB2 instance can access it.
Once you build the shared libary, spserver, you can build the client application spclient that calls the stored procedures within the shared library.
You can build spclient by using the script file, bldapp. Refer to "DB2 API and Embedded SQL Applications" for details.
To call the stored procedures in the shared library, run the sample client application by entering:
spclient database userid password
where
The client application accesses the shared library, spserver, and executes a number of stored procedure functions on the server database. The stored procedures return the output to the client application.
Note: | Please see the information for building C++ UDFs in "C++ Considerations for UDFs and Stored Procedures". |
The script file bldudf in sqllib/samples/cpp contains the commands to build a UDF. A UDF does not contain embedded SQL statements. This means to build a UDF program, you do not need to connect to a database, precompile, and bind the program.
The parameter, $1, specifies the name of your source file. The script file uses this source file name for the shared library name.
#! /bin/ksh # bldudf script file -- Linux # Builds a C++ UDF library # Usage: bldudf <prog_name> # Set DB2PATH to where DB2 will be accessed. # The default is the standard instance path. DB2PATH=$HOME/sqllib # Compile the program. if [[ -f $1".c" ]] then g++ -I$DB2PATH/include -c $1.c elif [[ -f $1".C" ]] then g++ -I$DB2PATH/include -c $1.C fi # Link the program. g++ -o $1 $1.o -shared -L$DB2PATH/lib -Wl,-rpath,$DB2PATH/lib -ldb2 -ldb2apie # Copy the shared library to the function subdirectory. # The user must have write permission to this directory. rm -f $DB2PATH/function/$1 cp $1 $DB2PATH/function
Compile and Link Options for bldudf |
---|
Compile Options:
|
Link Options:
Refer to your compiler documentation for additional compiler
options.
|
To build the user-defined function program udfsrv from the source file udfsrv.c , enter:
bldudf udfsrv
The script file copies the UDF to the sqllib/function directory.
If necessary, set the file mode for the UDF so the client application can access it.
Once you build udfsrv, you can build the client application, udfcli, that calls it. You can build the udfcli program from the udfcli.sqC source file in sqllib/samples/cpp using the script file bldapp. Refer to "DB2 API and Embedded SQL Applications" for details.
To call the UDF, run the sample calling application by entering the executable name:
udfcli
The calling application calls the ScalarUDF function in the udfsrv library.
Multi-threaded applications using Linux C++ need to be compiled with -D_REENTRANT and linked with -lpthread.
The script file, bldmt, in sqllib/samples/cpp, contains the commands to build an embedded SQL multi-threaded program.
The first parameter, $1, specifies the name of your source file. The second parameter, $2, specifies the name of the database to which you want to connect. The third parameter, $3, specifies the user ID for the database, and $4 specifies the password. Only the first parameter, the source file name, is required. Database name, user ID, and password are optional. If no database name is supplied, the program uses the default sample database.
#! /bin/ksh # bldmt script file -- Linux # Builds a C++ multi-threaded embedded SQL program. # Usage: bldmt <prog_name> [ <db_name> [ <userid> <password> ]] # Set DB2PATH to where DB2 will be accessed. # The default is the standard instance path. DB2PATH=$HOME/sqllib # If an embedded SQL program, precompile and bind it. embprep $1 $2 $3 $4 # Compile the program. g++ -D_REENTRANT -I$DB2PATH/include -c $1.C # Link the program. g++ -lpthread -o $1 $1.o -L$DB2PATH/lib -Wl,-rpath,$DB2PATH/lib -ldb2
Besides the -D_REENTRANT and -lpthread options, discussed above, and the absence of a utility file linked in, the other compile and link options are the same as those used for the embedded SQL script file, bldapp. For information on these options, see "DB2 API and Embedded SQL Applications".
To build the sample program, thdsrver, from the source file thdsrver.sqC , enter:
bldmt thdsrver
The result is an executable file, thdsrver. To run the executable file against the sample database, enter:
thdsrver