Returns the first sql warning object on the specified connection, result set or statement object.
Syntax
getWarnings( jdbcobject )
jdbcobject.getWarnings( )
Parameters
jdbcobject
|
the jdbc [ connection, resultset, statement ] object to use.
|
Returns
sqlwarning
|
the first sql warning object.
null if there are no sql warning objects.
|
Example
sqlw = stmt.getWarnings( )
|