| java.lang.Object org.continuent.sequoia.driver.ResultAndWarnings
ResultAndWarnings | public class ResultAndWarnings (Code) | | Holds the result of XXXExecuteUpdate() and XXXExecute() execution plus the
possible SQL Warning chain that was generated by the database.
This holder contains a warning chain, that can be null, and either an update
count (for XXXExecuteUpdate()) or a result list (for XXXExecute()), depending
on the function call that generated the result.
Note: All methods of this class are package private, nobody but the
driver itself should have access to it
author: Gilles Rayrat version: 1.0 |
getResultList | List getResultList()(Code) | | Gets the ResultList. Note: if the held value is not an ResultList,
then the returned value is unspecified
the resultList value |
getStatementWarnings | SQLWarning getStatementWarnings()(Code) | | Gets the warning chain associated to the statement that generated the
result
a SQLWarning chain or null if no warnings |
getUpdateCount | int getUpdateCount()(Code) | | Gets the updateCount. Note: if the held value is not an update
count, then the returned value is unspecified
the updateCount value |
|
|