JDBC Example

This document describes the mechanics of writing a Java program (typically running on your computer) that interacts with a MySql database hosted on satoshi.cis.uncw.edu.
  1. If Java JDK is not installed on your machine, do that first.
  2. Download the following files to the same folder:
    1. JDBC Example file - Java source file
    2. JDBC MySql jar file
  3. Open a terminal, navigate to the folder where you stored the files above, and at the command line, compile the Java source file using the command: javac  JDBC_Example.java
  4. If you are not on campus, you must be VPN'ed in to do the next steps. Run the Java program as described below:
    1. Windows: java   -cp   .;mysql-connector-java-8.0.21.jar   JDBC_Example
    2. Mac: java   -cp   .:mysql-connector-java-8.0.21.jar   JDBC_Example
  5. When prompted, enter your MySql user name as both the user name and the database name. When prompted for your password enter the MySql password you received in the email earlier this semester. Note: If you have changed your MySql  password since then, it is not your new password. It is the password you originally received in your email.