本章提供了如何創(chuàng)建一個(gè)簡(jiǎn)單 JDBC 應(yīng)用程序的示例。這個(gè)示例演示如何打開一個(gè)數(shù)據(jù)庫(kù)連接,執(zhí)行 SQL 查詢,并顯示結(jié)果。
所有在這個(gè)模版示例中提到的步驟,將在本教程的后續(xù)章節(jié)中進(jìn)行詳細(xì)描述。
構(gòu)建一個(gè) JDBC 應(yīng)用程序包括以下六個(gè)步驟-
導(dǎo)入數(shù)據(jù)包:需要你導(dǎo)入含有需要進(jìn)行數(shù)據(jù)庫(kù)編程的 JDBC 類的包。大多數(shù)情況下,使用 import java.sql. 就足夠了。
注冊(cè) JDBC 驅(qū)動(dòng)器:需要你初始化一個(gè)驅(qū)動(dòng)器,以便于你打開一個(gè)與數(shù)據(jù)庫(kù)的通信通道。
打開連接:需要使用 DriverManager.getConnection() 方法創(chuàng)建一個(gè) Connection 對(duì)象,它代表與數(shù)據(jù)庫(kù)的物理連接。
執(zhí)行查詢:需要使用類型聲明的對(duì)象建立并提交一個(gè) SQL 語句到數(shù)據(jù)庫(kù)。
提取結(jié)果數(shù)據(jù):要求使用適當(dāng)?shù)?ResultSet.getXXX() 方法從結(jié)果集中檢索數(shù)據(jù)。
當(dāng)你在未來需要?jiǎng)?chuàng)建自己的 JDBC 應(yīng)用程序時(shí),本示例可以作為一個(gè)模板。
在前面的章節(jié)里,基于對(duì)環(huán)境和數(shù)據(jù)庫(kù)安裝的示例代碼已經(jīng)寫過。
將下面的示例拷貝并粘帖到 JDBCExample.java 中,編譯并運(yùn)行它,如下所示-
//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
現(xiàn)在,讓我們用下面的命令編譯上面的代碼-
C:\>javac JDBCExample.java
C:\>
當(dāng)你運(yùn)行 JDBCExample 時(shí),它將展示下面的結(jié)果-
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:\>
更多建議: