package com.exam;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class ConnectionEx02 {
public static void main(String[] args) {
System.out.println("시작");
// 드라이버 이름 : org.mariadb.jdbc.Driver
// 동적으로 클래스 로딩
try {
Class.forName("org.mariadb.jdbc.Driver");
} catch (ClassNotFoundException e) {
System.out.println("[에러] " + e.getMessage());
}
System.out.println("드라이버 로딩 성공");
// 연결: 데이터베이스 위치(아이피/포트), 사용자 아이디, 비밀번호
String url = "jdbc:mariadb://localhost:3306/sample"; // localhost: 아이디, 3306: 포트
String user = "root";
String password = "123456";
Connection conn = null;
try {
conn = DriverManager.getConnection(url, user, password);
} catch (SQLException e) {
System.out.println("[에러] " + e.getMessage());
} finally {
if (conn != null) { try { conn.close(); } catch (SQLException e) {}}
}
System.out.println("데이터베이스 연결 성공");
System.out.println("끝");
}
}
Class.forName("org.mariadb.jdbc.Driver");
Class.forName()
메서드를 사용해 드라이버를 메모리에 로드합니다.ClassNotFoundException
예외가 발생합니다.드라이버 로딩이 완료되었으니, 이제 실제로 MariaDB 데이터베이스에 연결할 차례입니다.
DriverManager
는 자바 애플리케이션과 데이터베이스 드라이버 간의 연결을 관리하는 클래스입니다.DriverManager.getConnection()
메서드를 사용하여 데이터베이스에 연결할 때 주로 사용됩니다.getConneciton()
- 데이터베이스 연결을 반환합니다.DriverManager.getConnection()
메서드를 사용합니다.package com.exam;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class ConnectionEx02 {
public static void main(String[] args) {
System.out.println("시작");
try {
// MariaDB JDBC 드라이버 로드
Class.forName("org.mariadb.jdbc.Driver");
System.out.println("드라이버 로딩 성공");
} catch (ClassNotFoundException e) {
System.out.println("[에러] 드라이버 로딩 실패: " + e.getMessage());
}
// 데이터베이스 연결 정보
String url = "jdbc:mariadb://localhost:3306/sample"; // 데이터베이스 URL
String user = "root"; // 데이터베이스 사용자 이름
String password = "123456"; // 데이터베이스 비밀번호
Connection conn = null;
try {
// 데이터베이스에 연결
conn = DriverManager.getConnection(url, user, password);
System.out.println("데이터베이스 연결 성공");
} catch (SQLException e) {
// 연결 실패 시 오류 메시지 출력
System.out.println("[에러] 데이터베이스 연결 실패: " + e.getMessage());
} finally {
// 데이터베이스 연결 종료
if (conn != null) {
try {
conn.close();
System.out.println("데이터베이스 연결 해제");
} catch (SQLException e) {
System.out.println("[에러] 연결 해제 실패: " + e.getMessage());
}
}
}
System.out.println("끝");
}
}
Class.forName("org.mariadb.jdbc.Driver");
String url = "jdbc:mariadb://localhost:3306/sample";
"jdbc:mariadb://localhost:3306/sample"
는 localhost에 있는 sample 데이터베이스에 연결하겠다는 의미입니다.String user = "root";
와 String password = "123456";
conn = DriverManager.getConnection(url, user, password);
DriverManager.getConnection()
메서드를 사용해 데이터베이스에 연결하고, 성공 시 Connection
객체가 반환됩니다.SQLException
예외가 발생하고, 에러 메시지가 출력됩니다.conn.close();
finally
블록에서 conn.close()
를 호출하여 데이터베이스 연결을 해제합니다.Connection
객체는 데이터베이스와의 연결을 유지하므로, 사용이 끝나면 반드시 연결을 닫아야 합니다. 이를 통해 리소스가 적절히 해제되고 메모리 누수를 방지할 수 있습니다.// 정리된 ver.
package com.exam;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class ConnectionEx03 {
public static void main(String[] args) {
System.out.println("시작");
String url = "jdbc:mariadb://localhost:3306/sample";
String user = "root";
String password = "123456";
Connection conn = null;
try {
Class.forName("org.mariadb.jdbc.Driver");
System.out.println("드라이버 로딩 성공");
conn = DriverManager.getConnection(url, user, password);
System.out.println("데이터베이스 연결 성공");
} catch (ClassNotFoundException e) {
System.out.println("[에러] " + e.getMessage());
} catch (SQLException e) {
System.out.println("[에러] " + e.getMessage());
} finally {
if (conn != null) { try { conn.close(); } catch (SQLException e) {}}
}
System.out.println("끝");
}
}
Connection
객체는 애플리케이션과 데이터베이스 간의 실제 연결을 나타냅니다. Connection
이 활성 상태일 때 데이터베이스와의 모든 상호작용이 가능합니다.DriverManager.getConnection()
이 성공적으로 실행되면 Connection
객체가 생성됩니다.close()
- 데이터베이스 연결을 해제하여 리소스를 반환합니다.commit()
- 수동 트랜잭션 모드에서 작업을 확정합니다.rollback()
- 트랜잭션 중 오류가 발생했을 때 이전 상태로 복구합니다.