isCOBOL needs the proper JDBC driver to interact with any RDBMS, including Oracle. JDBC drivers are Java libraries (jar) that are usually supplied by the RDBMS vendor. Each RDMBS has its own drivers.
Oracle has several different types of drivers, and we recommend starting with the JDBC Thin driver. You can get Oracle's JDBC drivers here: http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html. Be sure to choose the one supported by your Java version.
The JDBC jar file needs to be accessible through the CLASSPATH variable. The easiest way to do this is to put it into the %ISCOBOL%jars folder that the runtime checks automatically.
The next requirement is to put the URL and driver name in your configuration file. Example values would be:
iscobol.jdbc.driver=oracle.jdbc.OracleDriver iscobol.jdbc.url=jdbc:oracle:thin:system/admin@localhost:1521:Check the documentation for more information about these two variables. You can also access samples in isCOBOL's sample directory, in the %ISCOBOL%samplesdata-accessesql directory and the %ISCOBOL%sampleeasydboracle directory.
Other helpful links are:
EXAMPLE
Here is a real example from one of our Linux boxes:
setup.sh:
export ISCOBOL_JDK_ROOT=/usr/jdk1.8.0_331 export PATH=$ISCOBOL_JDK_ROOT/bin:$PATH export ISCOBOL_JRE_ROOT=$ISCOBOL_JDK_ROOT export ISCOBOL=/home/dl136134/porting/Linux32/isCOBOL2012R1 export PATH=$ISCOBOL/bin:$PATH export LD_LIBRARY_PATH=$ISCOBOL/native/lib:$LD_LIBRARY_PATH export CLASSPATH=.:$ISCOBOL/lib/iscobol.jar:$ISCOBOL/lib/isxms.jar:$ISCOBOL/lib/utility.jar export ORACLE_HOME=/database/oracle/app/oracle/product/11.1.0/client_1 export CLASSPATH=$ORACLE_HOME/jdbc/lib/ojdbc6.jar:$CLASSPATH export PATH=$ORACLE_HOME/bin:$PATH export TWO_TASK=mach1Note that we are using TWO_TASK as documented at http://docs.oracle.com/cd/E11882_01/install.112/e24322/post_inst_task.htm#CHDJCCBI
MACH1.PHX03.WEST.SUN.COM = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = mach-1.phx03.west.sun.com)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = mach1) ) )which defines the mach1 service name.
To set up the environment run the following command:
../setup.shTo run a program named PROGRAM run the following command:
iscrun -c program.properties PROGRAMwhere program.properties contains the following:
iscobol.jdbc.driver=oracle.jdbc.OracleDriver iscobol.jdbc.url=jdbc:oracle:thin:user/password@//mach-1:1521/mach1replacing username/password with your actual username and password
jdbc:oracle:thin:scott/tiger@//myhost:1521/myservicenameFor more information about the syntax of the connection URL see "Data Sources and URLs" at http://docs.oracle.com/cd/E11882_01/java.112/e16548/urls.htm#JJDBC28267
Article ID: 191
Created: February 27, 2012
Last Updated: May 17, 2022
Author: Support KB Author
Online URL: https://support.veryant.com/phpkb/article.php?id=191