JavaTM 2 Platform
Standard Ed. 6

java.sql
類別 SQLTransientConnectionException

java.lang.Object
  繼承者 java.lang.Throwable
      繼承者 java.lang.Exception
          繼承者 java.sql.SQLException
              繼承者 java.sql.SQLTransientException
                  繼承者 java.sql.SQLTransientConnectionException
所有已實作的介面:
Serializable, Iterable<Throwable>

public class SQLTransientConnectionException
extends SQLTransientException

SQLState 類別值為“08”時拋出的 SQLException 子類別,表示在沒有進行任何應用程序級更改的情況下重試操作時,失敗的連接操作可以成功。

從以下版本開始:
1.6
另請參見:
序列化表格

建構子摘要
SQLTransientConnectionException()
          建構一個 SQLTransientConnectionException 物件。
SQLTransientConnectionException(String reason)
          建構一個帶有給定 reasonSQLTransientConnectionException 物件。
SQLTransientConnectionException(String reason, String SQLState)
          建構一個帶有給定 reasonSQLStateSQLTransientConnectionException 物件。
SQLTransientConnectionException(String reason, String SQLState, int vendorCode)
          建構一個帶有給定 reasonSQLStatevendorCodeSQLTransientConnectionException 物件。
SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause)
          建構一個帶有給定 reasonSQLStatevendorCodecauseSQLTransientConnectionException 物件。
SQLTransientConnectionException(String reason, String SQLState, Throwable cause)
          建構一個帶有給定 reasonSQLStatecauseSQLTransientConnectionException 物件。
SQLTransientConnectionException(String reason, Throwable cause)
          建構一個帶有給定 reasoncauseSQLTransientConnectionException 物件。
SQLTransientConnectionException(Throwable cause)
          建構一個帶有給定 causeSQLTransientConnectionException 物件。
 
方法摘要
 
從類別 java.sql.SQLException 繼承的方法
getErrorCode, getNextException, getSQLState, iterator, setNextException
 
從類別 java.lang.Throwable 繼承的方法
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

建構子詳細資訊

SQLTransientConnectionException

public SQLTransientConnectionException()
建構一個 SQLTransientConnectionException 物件。reasonSQLState 初始化為 null,供應商程式碼初始化為 0。 cause 沒有初始化,隨後可以調用 Throwable.initCause(java.lang.Throwable) 方法初始化。

從以下版本開始:
1.6

SQLTransientConnectionException

public SQLTransientConnectionException(String reason)
建構一個帶有給定 reasonSQLTransientConnectionException 物件。SQLState 初始化為 null,供應商程式碼初始化為 0。 cause 沒有初始化,隨後可以調用 Throwable.initCause(java.lang.Throwable) 方法初始化。

參數:
reason - 對異常的描述
從以下版本開始:
1.6

SQLTransientConnectionException

public SQLTransientConnectionException(String reason,
                                       String SQLState)
建構一個帶有給定 reasonSQLStateSQLTransientConnectionException 物件。 cause 沒有初始化,隨後可以調用 Throwable.initCause(java.lang.Throwable) 方法初始化。供應商程式碼初始化為 0。

參數:
reason - 對異常的描述
SQLState - 標識異常的 XOPEN 或 SQL:2003 程式碼
從以下版本開始:
1.6

SQLTransientConnectionException

public SQLTransientConnectionException(String reason,
                                       String SQLState,
                                       int vendorCode)
建構一個帶有給定 reasonSQLStatevendorCodeSQLTransientConnectionException 物件。 cause 沒有初始化,隨後可以調用 Throwable.initCause(java.lang.Throwable) 方法初始化。

參數:
reason - 對異常的描述
SQLState - 標識異常的 XOPEN 或 SQL:2003 程式碼
vendorCode - 特定於資料庫供應商的異常程式碼
從以下版本開始:
1.6

SQLTransientConnectionException

public SQLTransientConnectionException(Throwable cause)
建構一個帶有給定 causeSQLTransientConnectionException 物件。SQLState 初始化為 null,供應商程式碼初始化為 0。如果 cause==null,那麼 reason 初始化為 null;如果 cause!=null,則初始化為 cause.toString()

參數:
cause - 此 SQLException 的底層原因(保存此原因,以供以後通過 getCause() 方法獲取);可以為 null,表示 cause 不存在或未知。
從以下版本開始:
1.6

SQLTransientConnectionException

public SQLTransientConnectionException(String reason,
                                       Throwable cause)
建構一個帶有給定 reasoncauseSQLTransientConnectionException 物件。SQLState 初始化為 null,供應商程式碼初始化為 0。

參數:
reason - 對異常的描述。
cause - 此 SQLException 的底層原因(保存此原因,以供以後通過 getCause() 方法獲取);可以為 null,表示 cause 不存在或未知。
從以下版本開始:
1.6

SQLTransientConnectionException

public SQLTransientConnectionException(String reason,
                                       String SQLState,
                                       Throwable cause)
建構一個帶有給定 reasonSQLStatecauseSQLTransientConnectionException 物件。供應商程式碼初始化為 0。

參數:
reason - 對異常的描述。
SQLState - 標識異常的 XOPEN 或 SQL:2003 程式碼
cause - 此 SQLException 的底層原因(保存此原因,以供以後通過 getCause() 方法獲取);可以為 null,表示 cause 不存在或未知。
從以下版本開始:
1.6

SQLTransientConnectionException

public SQLTransientConnectionException(String reason,
                                       String SQLState,
                                       int vendorCode,
                                       Throwable cause)
建構一個帶有給定 reasonSQLStatevendorCodecauseSQLTransientConnectionException 物件。

參數:
reason - 對異常的描述
SQLState - 標識異常的 XOPEN 或 SQL:2003 程式碼
vendorCode - 特定於資料庫供應商的異常程式碼
cause - 此 SQLException 的底層原因(保存此原因,以供以後通過 getCause() 方法獲取);可以為 null,表示 cause 不存在或未知。
從以下版本開始:
1.6

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only