JDBC 異常處理
jdbc 異常處理
異常處理,是指可以在一個受控制的方式處理異常情況,如程序定義的錯誤。
當異常情況發生時,將引發異常,控制被重定向到適用的 catch 子句。如果沒有適用 catch 子句存在,那么程序的執行結束。
jdbc 的異常處理非常類似于 java excpetion 處理,但對于 jdbc,最常見的異常處理的是 java.sql.sqlexception。
1. sqlexception 方法
sqlexception 對象可用于檢索有關異常的附加信息:
方法 | 描述 |
---|---|
geterrorcode( ) | 獲取與異常關聯的錯誤號。 |
getmessage( ) | 獲取jdbc驅動程序的錯誤消息由驅動程序處理錯誤或獲取oracle錯誤號和消息的一個數據庫錯誤。 |
getsqlstate( ) | 獲取xopen sqlstate字符串。對于jdbc驅動程序的錯誤,沒有有用的信息從該方法返回。對于一個數據庫錯誤,則返回五位xopen sqlstate代碼。這種方法可以返回null。 |
getnextexception() | 獲取異常鏈的下一個exception對象。 |
printstacktrace( ) | 打印當前的異常,或者拋出,其回溯到標準錯誤流。 |
printstacktrace(printstream s) | 打印此拋出,其回溯到指定的打印流。 |
printstacktrace(printwriter w) | 打印此拋出,其回溯到指定的打印寫入。 |
2. jdbc 異常處理方法
利用可從 exception 對象捕獲異常的信息,并適當地繼續運行程序。
這里是一個 try塊的一般形式為:
try { // your risky code goes between these curly braces!!! } catch(exception ex) { // your exception handling code goes between these // curly braces, similar to the exception clause // in a pl/sql block. } finally { // your must-always-be-executed code goes between these // curly braces. like closing database connection. }
例如:
/step 1. import required packages import java.sql.*; public class jdbcexample { // 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; 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..."); 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(conn!=null) conn.close(); }catch(sqlexception se){ se.printstacktrace(); }//end finally try }//end try system.out.println("goodbye!"); }//end main }//end jdbcexample
現在讓我們來編譯上面的例子如下:
c:>javac jdbcexample.java c:>
當運行jdbcexample,如果沒有問題它會產生以下結果,否則相應的錯誤將被捕獲并會顯示錯誤消息:
c:>java jdbcexample 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:>
試試上面的例子中通過傳遞錯誤的數據庫名稱或錯誤的用戶名或密碼,并檢查結果。