位置:首頁 > Java技術 > java實例教學 > Java JDBC連接數據庫

Java JDBC連接數據庫

如何使用JDBC連接到數據庫?假設數據庫名稱為TESTDB,它有表employee,並且表中有2條記錄。

解決方法

下麵的示例使用getConnection(),createStatement()和executeQuery()方法來連接到數據庫和執行查詢。

import java.sql.*;

public class jdbcConn {
   public static void main(String[] args) {
      try {
         Class.forName("org.apache.derby.jdbc.ClientDriver");
      }
      catch(ClassNotFoundException e) {
         System.out.println("Class not found "+ e);
      }
      System.out.println("JDBC Class found");
      int no_of_rows = 0;
      try {
         Connection con = DriverManager.getConnection
         ("jdbc:derby://localhost:1527/testDb","username",
         "password");  
         Statement stmt = con.createStatement();
         ResultSet rs = stmt.executeQuery
         ("SELECT * FROM employee");
         while (rs.next()) {
            no_of_rows++;
         }
         System.out.println("There are "+ no_of_rows 
         + " record in the table");
      }
      catch(SQLException e){
         System.out.println("SQL exception occured" + e);
      }
   }
}

結果

上麵的代碼示例將產生以下結果。該結果可能會不同。如果JDBC驅動程序未正確安裝,將得到ClassNotFound異常。

JDBC Class found
There are 2 record in the table