

The Import statements tell the Java compiler where to find the classes you reference in your code and are placed at the very beginning of your source code. Register JDBC Driver − This step causes the JVM to load the desired driver implementation into memory so it can fulfill your JDBC requests.ĭatabase URL Formulation − This is to create a properly formatted address that points to the database to which you wish to connect.Ĭreate Connection Object − Finally, code a call to the DriverManager object's getConnection( ) method to establish actual database connection. Import JDBC Packages − Add import statements to your Java program to import required classes in your Java code.

The programming involved to establish a JDBC connection is fairly simple. After you've installed the appropriate driver, it is time to establish a database connection using JDBC.
