Pages

Monday 31 March 2014

Java JDBC Connection with MySql Simple Example

Hello friends , this is a very simple Java program for connecting your MySql Database with Java using Java code...

Here is the code :
------------------------

import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.SQLException;
 
public class JDBCExample {
 
  public static void main(String[] argv) {
 
 System.out.println("-------- MySQL JDBC Connection Testing --------");
 
 try {
  Class.forName("com.mysql.jdbc.Driver");
 } catch (ClassNotFoundException e) {
  System.out.println("Where is your MySQL JDBC Driver?");
  e.printStackTrace();
  return;
 }
 
 System.out.println("MySQL JDBC Driver Registered!");
 Connection connection = null;
 
 try {
  connection = DriverManager.getConnection("jdbc:mysql://localho                st:3306/dbname","root", "password");
 
 } catch (SQLException e) {
  System.out.println("Connection Failed! Check output console");
  e.printStackTrace();
  return;
 }
 
 if (connection != null) {
  System.out.println("Connection established.");
 } else {
  System.out.println("Failed to make connection!");
 }
  }
}

No comments:

Post a Comment