public class SQLFeatureNotSupportedException
extends SQLNonTransientException
| java.lang.Object | |||||
| java.lang.Throwable | |||||
| java.lang.Exception | |||||
| java.sql.SQLException | |||||
| java.sql.SQLNonTransientException | |||||
| java.sql.SQLFeatureNotSupportedException | |||||
当SQLState类的值为' 0A '(值为'零'A)时引发的子类SQLException 。 这表明JDBC驱动程序不支持可选的JDBC功能。 可选的JDBC功能可以分为以下几类:
Public constructors |
|
|---|---|
SQLFeatureNotSupportedException() 构造一个 |
|
SQLFeatureNotSupportedException(String reason) 用给定的 |
|
SQLFeatureNotSupportedException(String reason, String SQLState) 用给定的 |
|
SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode) 构造一个 |
|
SQLFeatureNotSupportedException(Throwable cause) 使用给定的 |
|
SQLFeatureNotSupportedException(String reason, Throwable cause) 用给定的 |
|
SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) 构造一个 |
|
SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause) 构造一个 |
|
继承方法(Inherited methods) |
|
|---|---|
java.sql.SQLException
|
|
java.lang.Throwable
|
|
java.lang.Object
|
|
java.lang.Iterable
|
|
SQLFeatureNotSupportedException ()
构造一个SQLFeatureNotSupportedException对象。 的reason , SQLState被初始化为null和供应商代码被初始化为0。 cause没有初始化,随后可以通过向一个呼叫进行初始化initCause(java.lang.Throwable)方法。
SQLFeatureNotSupportedException (String reason)
使用给定的reason构造一个SQLFeatureNotSupportedException对象。 SQLState初始化为null ,并且供应商代码初始化为0. cause未初始化,并可能随后通过调用initCause(java.lang.Throwable)方法进行初始化。
| 参数(Parameters) | |
|---|---|
reason |
String: a description of the exception |
SQLFeatureNotSupportedException (String reason, String SQLState)
使用给定的reason和SQLState构造一个SQLFeatureNotSupportedException对象。 cause未初始化,并可能随后通过调用initCause(java.lang.Throwable)方法进行初始化。 供应商代码初始化为0。
| 参数(Parameters) | |
|---|---|
reason |
String: a description of the exception |
SQLState |
String: an XOPEN or SQL:2003 code identifying the exception |
SQLFeatureNotSupportedException (String reason, String SQLState, int vendorCode)
构造一个SQLFeatureNotSupportedException与给定对象reason , SQLState和vendorCode 。 cause未初始化,并可能随后通过调用initCause(java.lang.Throwable)方法进行初始化。
| 参数(Parameters) | |
|---|---|
reason |
String: a description of the exception |
SQLState |
String: an XOPEN or SQL:2003 code identifying the exception |
vendorCode |
int: a database vendor specific exception code |
SQLFeatureNotSupportedException (Throwable cause)
用给定的cause构造一个SQLFeatureNotSupportedException对象。 该SQLState被初始化为null和供应商代码被初始化为0。 reason被初始化为null如果cause==null或cause.toString()如果cause!=null 。
| 参数(Parameters) | |
|---|---|
cause |
Throwable: the underlying reason for this SQLException (which is saved for later retrieval bythe getCause() method); may be null indicating the cause is non-existent or unknown. |
SQLFeatureNotSupportedException (String reason, Throwable cause)
使用给定的reason和cause构造一个SQLFeatureNotSupportedException对象。 SQLState初始化为null ,供应商代码初始化为0。
| 参数(Parameters) | |
|---|---|
reason |
String: a description of the exception. |
cause |
Throwable: the underlying reason for this SQLException (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. |
SQLFeatureNotSupportedException (String reason, String SQLState, Throwable cause)
构造一个SQLFeatureNotSupportedException与给定对象reason , SQLState和cause 。 供应商代码初始化为0。
| 参数(Parameters) | |
|---|---|
reason |
String: a description of the exception. |
SQLState |
String: an XOPEN or SQL:2003 code identifying the exception |
cause |
Throwable: the (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. |
SQLFeatureNotSupportedException (String reason, String SQLState, int vendorCode, Throwable cause)
构造一个 SQLFeatureNotSupportedException与给定对象 reason , SQLState , vendorCode和 cause 。
| 参数(Parameters) | |
|---|---|
reason |
String: a description of the exception |
SQLState |
String: an XOPEN or SQL:2003 code identifying the exception |
vendorCode |
int: a database vendor-specific exception code |
cause |
Throwable: the underlying reason for this SQLException (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. |