Constructors
| Name | Description |
|---|---|
| SQLWarning() | Construct an SQLWarning ; reason defaults to null, SQLState defaults to null and vendorCode defaults to 0. |
| SQLWarning(String) | Construct an SQLWarning with a reason; SQLState defaults to null and vendorCode defaults to 0. |
| SQLWarning(String, String) | Construct an SQLWarning with a reason and SQLState; vendorCode defaults to 0. |
| SQLWarning(String, String, int) | Construct a fully specified SQLWarning. |
Methods
| Name | Description |
|---|---|
| getNextWarning() | Get the warning chained to this one |
| setNextWarning(SQLWarning) | Add an SQLWarning to the end of the chain. |