下面是一個示例,它使用了結(jié)果集章節(jié)中描述的幾個 getInt 和 getString 方法。此示例與導(dǎo)航結(jié)果集部分中解釋的前面示例非常相似。
該示例代碼是根據(jù)前面章節(jié)中的環(huán)境和數(shù)據(jù)庫設(shè)置編寫的。
復(fù)制并粘貼以下示例到JDBCExample.java中,如下編譯并運行:
//步驟1.導(dǎo)入所需的軟件包 import java.sql.*; public class JDBCExample { // JDBC驅(qū)動程序名稱和數(shù)據(jù)庫URL static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost/EMP"; // 數(shù)據(jù)庫憑證 static final String USER = "username"; static final String PASS = "password"; public static void main(String[] args) { Connection conn = null; Statement stmt = null; try{ //步驟2:注冊JDBC驅(qū)動程序 Class.forName("com.mysql.jdbc.Driver"); //步驟3:建立連接 System.out.println("Connecting to database..."); conn = DriverManager.getConnection(DB_URL,USER,PASS); //步驟4:執(zhí)行查詢以創(chuàng)建陳述 // RS示例的必需參數(shù)。 System.out.println("Creating statement..."); stmt = conn.createStatement( ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY); String sql; sql = "SELECT id, first, last, age FROM Employees"; ResultSet rs = stmt.executeQuery(sql); // 將光標移到最后一行。 System.out.println("Moving cursor to the last..."); rs.last(); //步驟5:從結(jié)果集中提取數(shù)據(jù) System.out.println("Displaying record..."); //按列名檢索 int id = rs.getInt("id"); int age = rs.getInt("age"); String first = rs.getString("first"); String last = rs.getString("last"); //顯示值 System.out.print("ID: " + id); System.out.print(", Age: " + age); System.out.print(", First: " + first); System.out.println(", Last: " + last); // 將光標移到第一行。 System.out.println("Moving cursor to the first row..."); rs.first(); //步驟6:從結(jié)果集中提取數(shù)據(jù) System.out.println("Displaying record..."); //按列名檢索 id = rs.getInt("id"); age = rs.getInt("age"); first = rs.getString("first"); last = rs.getString("last"); //顯示值 System.out.print("ID: " + id); System.out.print(", Age: " + age); System.out.print(", First: " + first); System.out.println(", Last: " + last); // 將光標移到第一行。 System.out.println("Moving cursor to the next row..."); rs.next(); //步驟7:從結(jié)果集中提取數(shù)據(jù) System.out.println("Displaying record..."); id = rs.getInt("id"); age = rs.getInt("age"); first = rs.getString("first"); last = rs.getString("last"); //顯示值 System.out.print("ID: " + id); System.out.print(", Age: " + age); System.out.print(", First: " + first); System.out.println(", Last: " + last); //步驟8:清理環(huán)境 rs.close(); stmt.close(); conn.close(); }catch(SQLException se){ //處理JDBC錯誤 se.printStackTrace(); }catch(Exception e){ //處理Class.forName的錯誤 e.printStackTrace(); }finally{ //最終阻止用于關(guān)閉資源 try{ if(stmt!=null) stmt.close(); }catch(SQLException se2){ } try{ if(conn!=null) conn.close(); }catch(SQLException se){ se.printStackTrace(); } } System.out.println("Goodbye!"); } }//結(jié)束JDBCExample
現(xiàn)在讓我們編譯上面的示例,如下所示:
C:\>javac JDBCExample.java C:\>
運行時JDBCExample,它將產(chǎn)生以下結(jié)果-
C:\>java JDBCExample Connecting to database... Creating statement... Moving cursor to the last... Displaying record... ID: 103, Age: 30, First: Sumit, Last: Mittal Moving cursor to the first row... Displaying record... ID: 100, Age: 18, First: Zara, Last: Ali Moving cursor to the next row... Displaying record... ID: 101, Age: 25, First: Mahnaz, Last: Fatma Goodbye! C:\>