public class SQLWarning extends SQLException
An exception that provides information on database access warnings. Warnings are silently chained to the object whose method caused it to be reported.
Warnings may be retrieved from Connection
, Statement
,
and ResultSet
objects. Trying to retrieve a warning on a
connection after it has been closed will cause an exception to be thrown.
Similarly, trying to retrieve a warning on a statement after it has been
closed or on a result set after it has been closed will cause
an exception to be thrown. Note that closing a statement also
closes a result set that it might have produced.
Constructor | Description |
---|---|
SQLWarning() |
Constructs a
SQLWarning object. |
SQLWarning(String reason) |
Constructs a
SQLWarning object
with a given reason . |
SQLWarning(String reason,
String SQLState) |
Constructs a
SQLWarning object
with a given reason and SQLState . |
SQLWarning(String reason,
String SQLState,
int vendorCode) |
Constructs a
SQLWarning object
with a given reason , SQLState and
vendorCode . |
SQLWarning(String reason,
String SQLState,
int vendorCode,
Throwable cause) |
Constructs a
SQLWarning object
with a given
reason , SQLState , vendorCode
and cause . |
SQLWarning(String reason,
String SQLState,
Throwable cause) |
Constructs a
SQLWarning object
with a given
reason , SQLState and cause . |
SQLWarning(String reason,
Throwable cause) |
Constructs a
SQLWarning object
with a given
reason and cause . |
SQLWarning(Throwable cause) |
Constructs a
SQLWarning object
with a given cause . |
Modifier and Type | Method | Description |
---|---|---|
SQLWarning |
getNextWarning() |
Retrieves the warning chained to this
SQLWarning object by
setNextWarning . |
void |
setNextWarning(SQLWarning w) |
Adds a
SQLWarning object to the end of the chain. |
getErrorCode, getNextException, getSQLState, iterator, setNextException
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
forEach, spliterator
public SQLWarning(String reason, String SQLState, int vendorCode)
SQLWarning
object
with a given reason
, SQLState
and
vendorCode
.
The cause
is not initialized, and may subsequently be
initialized by a call to the
Throwable.initCause(java.lang.Throwable)
method.
reason
- a description of the warningSQLState
- an XOPEN or SQL:2003 code identifying the warningvendorCode
- a database vendor-specific warning codepublic SQLWarning(