JDBC-샘플, 예제 코드
이 장에서는 간단한 JDBC 응용 프로그램을 만드는 방법에 대한 예를 제공합니다. 데이터베이스 연결을 열고, SQL 쿼리를 실행하고, 결과를 표시하는 방법을 보여줍니다.
이 템플릿 예제에 언급 된 모든 단계는이 자습서의 후속 장에서 설명됩니다.
JDBC 애플리케이션 생성
JDBC 애플리케이션을 구축하는 데 관련된 다음 6 단계가 있습니다.
Import the packages:데이터베이스 프로그래밍에 필요한 JDBC 클래스가 포함 된 패키지를 포함해야합니다. 대부분의 경우 import java.sql. * 를 사용하는 것으로 충분합니다.
Register the JDBC driver: 데이터베이스와의 통신 채널을 열 수 있도록 드라이버를 초기화해야합니다.
Open a connection:은 USING 필요 DriverManager.getConnection를 () 데이터베이스와의 물리적 연결을 나타내는 연결 객체를 생성하는 방법.
Execute a query: SQL 문을 작성하고 데이터베이스에 제출하려면 Statement 유형의 오브젝트를 사용해야합니다.
Extract data from result set:결과 세트에서 데이터를 검색하려면 적절한 ResultSet.getXXX () 메소드를 사용해야합니다 .
Clean up the environment: JVM의 가비지 수집에 의존하는 대신 모든 데이터베이스 리소스를 명시 적으로 닫아야합니다.
샘플 코드
이 샘플 예제는 template 나중에 고유 한 JDBC 애플리케이션을 만들어야 할 때
이 샘플 코드는 이전 장에서 수행 한 환경 및 데이터베이스 설정을 기반으로 작성되었습니다.
다음 예제를 FirstExample.java에 복사하여 붙여넣고 다음과 같이 컴파일하고 실행하십시오.
//STEP 1. Import required packages
import java.sql.*;
public class FirstExample {
// JDBC driver name and database URL
static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
static final String DB_URL = "jdbc:mysql://localhost/EMP";
// Database credentials
static final String USER = "username";
static final String PASS = "password";
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
try{
//STEP 2: Register JDBC driver
Class.forName("com.mysql.jdbc.Driver");
//STEP 3: Open a connection
System.out.println("Connecting to database...");
conn = DriverManager.getConnection(DB_URL,USER,PASS);
//STEP 4: Execute a query
System.out.println("Creating statement...");
stmt = conn.createStatement();
String sql;
sql = "SELECT id, first, last, age FROM Employees";
ResultSet rs = stmt.executeQuery(sql);
//STEP 5: Extract data from result set
while(rs.next()){
//Retrieve by column name
int id = rs.getInt("id");
int age = rs.getInt("age");
String first = rs.getString("first");
String last = rs.getString("last");
//Display values
System.out.print("ID: " + id);
System.out.print(", Age: " + age);
System.out.print(", First: " + first);
System.out.println(", Last: " + last);
}
//STEP 6: Clean-up environment
rs.close();
stmt.close();
conn.close();
}catch(SQLException se){
//Handle errors for JDBC
se.printStackTrace();
}catch(Exception e){
//Handle errors for Class.forName
e.printStackTrace();
}finally{
//finally block used to close resources
try{
if(stmt!=null)
stmt.close();
}catch(SQLException se2){
}// nothing we can do
try{
if(conn!=null)
conn.close();
}catch(SQLException se){
se.printStackTrace();
}//end finally try
}//end try
System.out.println("Goodbye!");
}//end main
}//end FirstExample
이제 위의 예를 다음과 같이 컴파일 해 보겠습니다.
C:\>javac FirstExample.java
C:\>
당신이 달릴 때 FirstExample, 다음 결과를 생성합니다-
C:\>java FirstExample
Connecting to database...
Creating statement...
ID: 100, Age: 18, First: Zara, Last: Ali
ID: 101, Age: 25, First: Mahnaz, Last: Fatma
ID: 102, Age: 30, First: Zaid, Last: Khan
ID: 103, Age: 28, First: Sumit, Last: Mittal
C:\>