The Tutorial want to illustrate a code that explain you to understand JDBC Mysql Connection. In this program, the code explain the JDBC url and string connection that helps you in connecting between url and database. For this we have a code that includes a java.sql package, this package enables you a network connectivity between url and database.
Loading a driver is done by calling a Class.forName ( ) that accept driver class as argument.
DriverManager.getConnection ( ) - The Driver Manager class call Connection ( ) method, which returns you a connection object. This method is responsible for built a connection between a url and database.
On execution of code, The println show you the value of connection and type of driver used in connecting url and database. In case there is an exception in try block, the catch block caught and handle the exception.
JdbcMysqlConnectionUrl.java
import java.sql.*;
|
Output
JdbcMysqlConnectionString : jdbc:mysql://localhost:3306/komal?user=root&password=root&database=komal |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Jdbc Mysql Connection Url View All Comments
Post your Comment