Home Jdbc Jdbc-mysql Jdbc Mysql Connection String



Jdbc Mysql Connection String
Posted on: November 18, 2008 at 12:00 AM
In this Tutorial we want to explain you a code that makes you to understand JDBC MysqlConnection String.

JDBC Mysql Connection String

     

In this Tutorial we want to explain you a code that makes you to understand JDBC MysqlConnection String. The code include a class  JdbcMysqlConnectionString,Inside this class we have a main method that follow the list of steps -

1)The first step is to import a package java.sql.* - This provides you a network interface that communicate between  front end application in java and database.

2)Loading a driver is the next step by calling a class class.forname( ) and accept driver class as argument.

3)DriverManager.getConnection( ) - This is used to built a connection between url and database.

Finally the print ln print the connection value, username and password. In case there is an exception in try block, the subsequent catch block caught and handle the exception occurred in try block.

4)e,printStacktrace( ) - This method print the list of all methods that are currently executed at that time. It also contain message string information about the error.  

JdbcMysqlConnectionString.java.java
import java.sql.*;

public class JdbcMysqlConnectionString {

static public final String driver = "com.mysql.jdbc.Driver";
static public final String connection =
"jdbc:mysql://localhost:3306/komal";
static public final String user = "root";
static public final String password = "root";

public static void main(String args[]) {
try {
Class.forName(driver);
Connection con =
DriverManager.getConnection(connection, user, password);

System.out.println("Jdbc Mysql Connection String :");
System.out.println(connection);

System.out.println("User Name :" + user);
System.out.println("Password :" + password);

if (!con.isClosed()) {
con.close();
}

} catch (Exception e) {
e.printStackTrace();
}
}
}


Output

Jdbc Mysql Connection String :
jdbc:mysql://localhost:3306/komal
User Name :root
Password  :root

Download code

Related Tags for Jdbc Mysql Connection String:
sqlmysqlcstringantjdbcioconnectionmaketutorialriathisaiconnectsqlconnectiontoeinstamnttrwanjdbcdbesjdbexplaintorsatmykishaandcodcodestrxpwanttutorssriringthbcsthatplplaindodeono


More Tutorials from this section

Ask Questions?    Discuss: Jdbc Mysql Connection String   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

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.