JDBC(Java Database Connectivity)
자바에서 데이터베이스와 연동할 수 있도록 제공되는 자바의 표준 API(Application Programming Interface)
JDBC를 사용하면 자바 프로그램에서 SQL 쿼리를 실행하고 데이터를 검색, 추가, 수정, 삭제할 수 있다.
import java.sql.*;
public class JdbcExample {
public static void main(String[] args) {
try {
// JDBC 드라이버 로드
Class.forName("com.mysql.jdbc.Driver");
// 데이터베이스 연결
String url = "jdbc:mysql://localhost/mydatabase";
String username = "myuser";
String password = "mypassword";
Connection conn = DriverManager.getConnection(url, username, password);
// SQL 쿼리 실행
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM mytable");
// 결과 출력
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
System.out.println("ID: " + id + ", Name: " + name + ", Age: " + age);
}
// 연결 해제
rs.close();
stmt.close();
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
'JAVA' 카테고리의 다른 글
메소드 참조란? (0) | 2023.05.10 |
---|---|
람다함수란? (0) | 2023.05.10 |
${} 표현식 JSP 주석 <%-- <!-- 500ERROR 에러 (0) | 2023.05.03 |
fmt:formatNumber, 쉽게 금액표현하기 (0) | 2023.05.03 |
JAVA for문으로 다이아몬드 모양 출력하기 (0) | 2023.04.27 |