Package org.apache.derby.impl.tools.ij
Class ijVectorResult
- java.lang.Object
-
- org.apache.derby.impl.tools.ij.ijResultImpl
-
- org.apache.derby.impl.tools.ij.ijVectorResult
-
- All Implemented Interfaces:
ijResult
class ijVectorResult extends ijResultImpl
This is an impl for a simple Vector of objects.
-
-
Constructor Summary
Constructors Constructor Description ijVectorResult(java.lang.Object value, java.sql.SQLWarning w)Initialize a new vector containing only one object.ijVectorResult(java.util.Vector<java.lang.Object> v, java.sql.SQLWarning w)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclearSQLWarnings()java.sql.SQLWarninggetSQLWarnings()java.util.VectorgetVector()booleanisVector()-
Methods inherited from class org.apache.derby.impl.tools.ij.ijResultImpl
closeStatement, getColumnDisplayList, getColumnWidthList, getConnection, getException, getMultipleResultSets, getNextRowOfResultSet, getResultSet, getStatement, getUpdateCount, hasWarnings, isConnection, isException, isMulti, isMultipleResultSetResult, isNextRowOfResultSet, isResultSet, isStatement, isUpdateCount, toString
-
-
-
-
Method Detail
-
isVector
public boolean isVector()
- Specified by:
isVectorin interfaceijResult- Overrides:
isVectorin classijResultImpl
-
getVector
public java.util.Vector getVector()
- Specified by:
getVectorin interfaceijResult- Overrides:
getVectorin classijResultImpl
-
getSQLWarnings
public java.sql.SQLWarning getSQLWarnings()
- Specified by:
getSQLWarningsin interfaceijResult- Specified by:
getSQLWarningsin classijResultImpl
-
clearSQLWarnings
public void clearSQLWarnings()
- Specified by:
clearSQLWarningsin interfaceijResult- Specified by:
clearSQLWarningsin classijResultImpl
-
-