JDBC for Oracle - Herong's Tutorial Examples - v3.13, by Herong Yang
Adding JDK "bin" Directory to Path Setting
This section provides a tutorial on how to add JDK 'bin' directory to the 'path' system environment variable.
In order to run Java compiler and JVM by typing their program file name without the directory path name, I updated the "path" environment variable on my Windows computer:
Then I ran the "echo %path%" command in a new command window to confirm the change:
herong> echo %path% C:\Progra~1\java\jdk-17.0.1\bin; C:\WINDOWS\system32;C:\WINDOWS; ...
Now I should be able to run Java commands without the directory path name:
herong> java -version java version "17.0.1" 2021-10-19 LTS
I also want to set a new environment variable called "JAVA_HOME" to avoid typing the full path name to access Java tool program files:
herong> set JAVA_HOME=C:\Progra~1\java\jdk-12.0.1 herong> %java_home%\bin\java -version java version "12.0.1" 2019-04-16 Java(TM) SE Runtime Environment (build 12.0.1+12) Java HotSpot(TM) 64-Bit Server VM (build 12.0.1+12, mixed mode, sharing)
I am ready to play with Java tools included in Oracle JDK package!
Table of Contents
JDBC (Java Database Connectivity) Introduction
Downloading and Installing JDK
►Adding JDK "bin" Directory to Path Setting
Downloading and Installing JDK on Mac
Downloading and Installing JDK on Linux
-cp or -classpath Syntax on Different Systems
JDK Documentation Installation
Oracle Express Edition Installation on Windows
Oracle - Reference Implementation of JdbcRowSet
Oracle - JBDC CallableStatement
Oracle CLOB (Character Large Object) - TEXT
Oracle BLOB (Binary Large Object) - BLOB