uCosminexus Service Platform, Reference Guide

[Contents][Glossary][Index][Back][Next]

HCSC-Messaging command definition file

Format

In Windows

 
@echo off
set HCSC_ADDCLASSPATH=Path-of-HiRDB-Type4-JDBC-Driver-or-Oracle-JDBC-Thin-Driver
 

In UNIX

 
#!/bin/sh
HCSC_ADDCLASSPATH=Path-of-HiRDB-Type4-JDBC-Driver-or-Oracle-JDBC-Thin-Driver
 

Function

Specifies the information required for operating HCSC-Messaging commands (commands beginning with csm).

File storage location

In Windows

 
Service-platform-installation-directory\CSC\config\msg\cmdconf.bat
 

In UNIX

 
/opt/Cosminexus/CSC/config/msg/cmdconf
 

Specifiable parameters

HCSC_ADDCLASSPATH

Specifies the file name of each database driver with an absolute path.

In cases other than the above, define only the environment variable and do not specify the value.

Note
Do not set any value other than HCSC_ADDCLASSPATH as the environment variable.

Example of coding

The following are the examples of coding of the HCSC-Messaging command definition file:

In Windows

 
@echo off
set HCSC_ADDCLASSPATH=C:\win32app\hitachi\hirdb_s\CLIENT\UTL\pdjdbc2.jar
 

In UNIX

 
#!/bin/sh
HCSC_ADDCLASSPATH=/opt/HiRDB_S/client/lib/pdjdbc2.jar