Module  java.sql
软件包  java.sql

Class SQLFeatureNotSupportedException

  • All Implemented Interfaces:
    SerializableIterable<Throwable>


    public class SQLFeatureNotSupportedException
    extends SQLNonTransientException
    当SQLState类的值为' 0A '(值为'零'A)时,抛出SQLException的子类。 这表明JDBC驱动程序不支持可选的JDBC功能。 可选的JDBC功能可以归入休闲类别:
    • 不支持可选功能
    • 不支持可选的重载方法
    • 不支持方法的可选模式。 方法的模式是基于作为方法的参数值传递的常数确定的
    从以下版本开始:
    1.6
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​()
        构造一个SQLFeatureNotSupportedException对象。 reasonSQLState被初始化为null和供应商代码被初始化为0。 cause没有初始化,随后可以通过向一个呼叫进行初始化Throwable.initCause(java.lang.Throwable)方法。
        从以下版本开始:
        1.6
      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​(String reason)
        使用给定的reason构造一个SQLFeatureNotSupportedException对象。 SQLState初始化为null ,供应商代码初始化为0. cause未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)方法进行初始化。
        参数
        reason - 异常的描述
        从以下版本开始:
        1.6
      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​(String reason,
                                               String SQLState)
        构造一个SQLFeatureNotSupportedException对象与给定的reasonSQLState cause未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)方法进行初始化。 供应商代码初始化为0。
        参数
        reason - 异常的描述
        SQLState - 标识异常的XOPEN或SQL:2003代码
        从以下版本开始:
        1.6
      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​(String reason,
                                               String SQLState,
                                               int vendorCode)
        构造一个SQLFeatureNotSupportedException与给定对象reasonSQLStatevendorCode cause未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)方法进行初始化。
        参数
        reason - 异常的描述
        SQLState - 标识异常的XOPEN或SQL:2003代码
        vendorCode - 数据库供应商特定的异常代码
        从以下版本开始:
        1.6
      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​(Throwable cause)
        构造一个SQLFeatureNotSupportedException对象与给定的cause SQLState被初始化为null和供应商代码被初始化为0。 reason被初始化为null如果cause==nullcause.toString()如果cause!=null
        参数
        cause - 这个SQLException的基本原因(保存以供getCause()方法稍后检索); 可能为空,表示原因不存在或未知。
        从以下版本开始:
        1.6
      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​(String reason,
                                               Throwable cause)
        使用给定的reasoncause构造一个SQLFeatureNotSupportedException对象。 SQLState初始化为null ,供应商代码初始化为0。
        参数
        reason - 异常的描述。
        cause - 这个SQLException的基本原因(由getCause()方法保存供以后检索); 可能为空,表示原因不存在或未知。
        从以下版本开始:
        1.6
      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​(String reason,
                                               String SQLState,
                                               Throwable cause)
        构造一个SQLFeatureNotSupportedException与给定对象reasonSQLStatecause 供应商代码初始化为0。
        参数
        reason - 异常的描述。
        SQLState - 标识异常的XOPEN或SQL:2003代码
        cause - (通过getCause()方法保存供以后检索); 可能为空,表示原因不存在或未知。
        从以下版本开始:
        1.6
      • SQLFeatureNotSupportedException

        public SQLFeatureNotSupportedException​(String reason,
                                               String SQLState,
                                               int vendorCode,
                                               Throwable cause)
        构造一个 SQLFeatureNotSupportedException与给定对象 reasonSQLStatevendorCodecause
        参数
        reason - 异常的描述
        SQLState - 标识异常的XOPEN或SQL:2003代码
        vendorCode - 数据库供应商特定的异常代码
        cause - 这个SQLException的基本原因(保存以供getCause()方法稍后检索); 可能为空,表示原因不存在或未知。
        从以下版本开始:
        1.6