public class SQLWarning
extends SQLException
java.lang.Object | ||||
↳ | java.lang.Throwable | |||
↳ | java.lang.Exception | |||
↳ | java.sql.SQLException | |||
↳ | java.sql.SQLWarning |
Known Direct Subclasses |
提供有关数据库访问警告信息的例外。 警告被无声地链接到其方法导致其被报告的对象。
警告可以从被检索Connection
, Statement
,和ResultSet
对象。 尝试在连接关闭后检索警告会导致引发异常。 同样,试图在语句关闭后或语句关闭后的结果集上检索警告将导致引发异常。 请注意,关闭语句也会关闭它可能产生的结果集。
Public constructors |
|
---|---|
SQLWarning(String reason, String SQLState, int vendorCode) 构造一个 |
|
SQLWarning(String reason, String SQLState) 用给定的 |
|
SQLWarning(String reason) 用给定的 |
|
SQLWarning() 构造一个 |
|
SQLWarning(Throwable cause) 用给定的 |
|
SQLWarning(String reason, Throwable cause) 使用给定的 |
|
SQLWarning(String reason, String SQLState, Throwable cause) 构造一个 |
|
SQLWarning(String reason, String SQLState, int vendorCode, Throwable cause) 构造一个 |
Public methods |
|
---|---|
SQLWarning |
getNextWarning() 通过 |
void |
setNextWarning(SQLWarning w) 将一个 |
Inherited methods |
|
---|---|
From class java.sql.SQLException
|
|
From class java.lang.Throwable
|
|
From class java.lang.Object
|
|
From interface java.lang.Iterable
|
SQLWarning (String reason, String SQLState, int vendorCode)
构造一个SQLWarning
与给定对象reason
, SQLState
和vendorCode
。 cause
未初始化,并可能随后通过调用initCause(java.lang.Throwable)
方法进行初始化。
Parameters | |
---|---|
reason |
String : a description of the warning |
SQLState |
String : an XOPEN or SQL:2003 code identifying the warning |
vendorCode |
int : a database vendor-specific warning code |
SQLWarning (String reason, String SQLState)
使用给定的reason
和SQLState
构造一个SQLWarning
对象。 cause
未初始化,并可能随后通过调用initCause(java.lang.Throwable)
方法进行初始化。 供应商代码初始化为0。
Parameters | |
---|---|
reason |
String : a description of the warning |
SQLState |
String : an XOPEN or SQL:2003 code identifying the warning |
SQLWarning (String reason)
用给定的reason
构造一个SQLWarning
对象。 SQLState
初始化为null
,并将供应商代码初始化为0. cause
未初始化,并可能随后通过调用initCause(java.lang.Throwable)
方法进行初始化。
Parameters | |
---|---|
reason |
String : a description of the warning |
SQLWarning ()
构造一个SQLWarning
对象。 的reason
, SQLState
被初始化为null
和供应商代码被初始化为0。 cause
没有初始化,随后可以通过向一个呼叫进行初始化initCause(java.lang.Throwable)
方法。
SQLWarning (Throwable cause)
用给定的cause
构造一个SQLWarning
对象。 SQLState
初始化为null
,供应商代码初始化为0. reason
初始化为null
如果为cause==null
或cause.toString()
如果为null
则初始化为cause!=null
。
Parameters | |
---|---|
cause |
Throwable : the underlying reason for this SQLWarning (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. |
SQLWarning (String reason, Throwable cause)
用给定的reason
和cause
构造一个SQLWarning
对象。 SQLState
初始化为null
,供应商代码初始化为0。
Parameters | |
---|---|
reason |
String : a description of the warning |
cause |
Throwable : the underlying reason for this SQLWarning (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. |
SQLWarning (String reason, String SQLState, Throwable cause)
构造一个SQLWarning
与给定对象reason
, SQLState
和cause
。 供应商代码初始化为0。
Parameters | |
---|---|
reason |
String : a description of the warning |
SQLState |
String : an XOPEN or SQL:2003 code identifying the warning |
cause |
Throwable : the underlying reason for this SQLWarning (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. |
SQLWarning (String reason, String SQLState, int vendorCode, Throwable cause)
构造一个 SQLWarning
与给定对象 reason
, SQLState
, vendorCode
和 cause
。
Parameters | |
---|---|
reason |
String : a description of the warning |
SQLState |
String : an XOPEN or SQL:2003 code identifying the warning |
vendorCode |
int : a database vendor-specific warning code |
cause |
Throwable : the underlying reason for this SQLWarning (which is saved for later retrieval by the getCause() method); may be null indicating the cause is non-existent or unknown. |
SQLWarning getNextWarning ()
通过 setNextWarning
检索链接到此 SQLWarning
对象的 setNextWarning
。
Returns | |
---|---|
SQLWarning |
the next SQLException in the chain; null if none |
也可以看看:
void setNextWarning (SQLWarning w)
将 SQLWarning
对象添加到链的末尾。
Parameters | |
---|---|
w |
SQLWarning : the new end of the SQLException chain |
也可以看看: