JDBC] 이클립스 & MySQL 연결 확인

2014. 8. 12. 11:02 - Song's IT

■ JDBC 연동확인 Java Source Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DriverManager.getConnection("jdbc:mysql://localhost:3306/tets""ID""Password");
// ("MySQL 3306포트 + 데이터베이스 test에 연결", "mysql계정 ID", "MySQL계정 Password")
 
import java.sql.*;
 
public class DriverTest {
    
    public static void main(String args[]) {
 
        Connection conn;
 
        try {
            Class.forName("com.mysql.jdbc.Driver").newInstance();
            conn = DriverManager.getConnection(
                    "jdbc:mysql://localhost:3306/test""root""admin");
            System.out.println("Success!");
        } catch (SQLException ex) {
            System.out.println("SQLException:" + ex);
        } catch (Exception e) {
            System.out.println("Exception:" + e);
        }
    }
}


'Development > Eclipse' 카테고리의 다른 글

[JAV] AES-256 CBC 암복호화  (0) 2018.07.24
JDBC] Eclipse - MySQL 연동  (0) 2014.08.12
Eclipse] 프로젝트파일 Import  (0) 2014.08.12

다른 카테고리의 글 목록

Development/Eclipse 카테고리의 포스트를 톺아봅니다