歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Java中MySQL建立連接

下面是在JAVA中與MySQL建立連接的一個模塊:

[java]
  1. package com.han;  
  2.   
  3. import java.sql.Connection;  
  4. import java.sql.DriverManager;  
  5. import java.sql.SQLException;  
  6.   
  7. /** 
  8.  * SQL connection module 
  9.  * @author HAN 
  10.  * 
  11.  */  
  12. public class Conn {  
  13.     Connection con;//Declare a Connection object   
  14.     String driver="com.mysql.jdbc.Driver";// the MySQL driver   
  15.     String url="jdbc:mysql://localhost:3306/db_jdbc";// URL points to destination database to manipulate  
  16.     String user="root";//user name for the specified database   
  17.     String pwd="hangaowen1212";//the corresponding password   
  18.     public Connection getConnection(){  
  19.         try {  
  20.             Class.forName(driver);// add MySQL driver   
  21.             System.out.println("Database driver is successfully added");  
  22.         } catch (ClassNotFoundException e) {  
  23.             // TODO Auto-generated catch block   
  24.             e.printStackTrace();  
  25.         }  
  26.         try {  
  27.             con=DriverManager.getConnection(url,user,pwd);//create a connection object   
  28.             System.out.println("Database connection is successful");  
  29.         } catch (SQLException e) {  
  30.             // TODO Auto-generated catch block   
  31.             e.printStackTrace();  
  32.         }  
  33.         return con;  
  34.     }  
  35.     public static void main(String[] args){  
  36.         Conn c=new Conn();  
  37.         c.getConnection();  
  38.     }  
  39. }  

附:MySQL相關配置

1. 下載MySQL,安裝(大小300多M)

2. 配置數據庫(打開MySQL建立用戶名,密碼,數據庫URL,端口號等);還要打開MySQL安裝目錄,找到mysql-connector-java-5.1.15-bin.jar這樣的文件加進CLASSPATH(CMD在電腦的系統環境變量中,eclipse在run configuration中)。

Copyright © Linux教程網 All Rights Reserved