2008. 7. 27. 10:43
JDBC 와 MySQL 연동하기
2008. 7. 27. 10:43 in 3. Implementation/DATABASE
1. MySQL용 JDBC Driver 다운로드 (http://java.sun.com)
2. mysql-connector-java-<ver>-bin.jar 파일을 %JAVA%\jre\lib\ext에다가 복사한다.
(CLASSPATHH에 해당 jar 파일이 있는 경로를 추가해 된다.)
3. 아래 코드로 연결 시도
import java.sql.*;
class TelBook
{
public static void main(String args[])
{
Connection con = null;
try{
Class.forName("com.mysql.jdbc.Driver");
class TelBook
{
public static void main(String args[])
{
Connection con = null;
try{
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection
("jdbc:mysql://localhost/test?" + "user=root&password=****");
System.out.println("데이터베이스 연결 성공했습니다.");
con.close();
}catch(ClassNotFoundException e){
System.out.println("JDBC Drvier load fail!!!");
}catch(SQLException e){
System.out.println("Connection fail!!!");
e.printStackTrace();
}
finally{
try{
if(con != null) con.close();
}catch(SQLException e){}
}
};
};
("jdbc:mysql://localhost/test?" + "user=root&password=****");
System.out.println("데이터베이스 연결 성공했습니다.");
con.close();
}catch(ClassNotFoundException e){
System.out.println("JDBC Drvier load fail!!!");
}catch(SQLException e){
System.out.println("Connection fail!!!");
e.printStackTrace();
}
finally{
try{
if(con != null) con.close();
}catch(SQLException e){}
}
};
};